Releases: javiersantos/AppUpdater
Releases · javiersantos/AppUpdater
Version 2.7
-
Temporary fix to Google Play update mechanism.
ℹ️ Using UpdateFrom.GOOGLE PLAY is not recommended as the Google Play website may vary at any time, use UpdateFrom.XML or UpdateFrom.JSON instead. More info in issue #132. -
Updated version comparator to allow non-number characters. Thanks to @dhebbeker.
-
Filter GitHub response to the latest release. Thanks to @dhebbeker.
-
Updated some libraries.
Version 2.6.5
- Added notification channel to support SDK 27 (Android Oreo).
Version 2.6.4
Version 2.6.3
This release has a quick fix for the previous 2.6.2 release.
- Added
.setCancelable(boolean)
to make the dialog dismissable. - Updated OkHttp to 3.8.1
Version 2.6.1
- Fixed issue when
versionCode
wasn't included in the JSON or XML file. - Fixed NumberFormatException when
versionCode
has been added to a XML file.
Version 2.6
Version 2.5.4
Version 2.5.2
- Added possibility for custom listeners:
.setButtonUpdateClickListener(...)
,.setButtonDismissClickListener(...)
,.setButtonDoNotShowAgainClickListener(...)
. Thanks to @joen93. - Added Dutch translation.
- Updated OkHttp to 3.6.0
Version 2.5.1
Version 2.5
JSON files are now supported
new AppUpdater(this)
.setUpdateFrom(UpdateFrom.JSON)
.setUpdateJSON("https://github.com/javiersantos/AppUpdater/wiki/UpdateFrom.JSON")
...
When using the JSON source you must upload a .json file somewhere on the Internet following the structure explained in the wiki and add the URL as shown in this example: .setUpdateJSON("https://github.com/javiersantos/AppUpdater/wiki/UpdateFrom.JSON")
.
Thanks a lot to @kgritesh for your PR!
Minor changes
minSdkVersion
now requires API +9.- #59 Added Czech translation. Thanks to @thubalek.
- #51 Added Chinese translation. Thanks to @androidZhai.
- #57 Improve grammar of some messages. Thanks to @matthewmayer.
- Fixed #62. Thanks to @thubalek.