Skip to content

Releases: javiersantos/AppUpdater

Version 2.7

05 Jul 21:51
Compare
Choose a tag to compare
  • 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

17 Feb 14:26
Compare
Choose a tag to compare
  • Added notification channel to support SDK 27 (Android Oreo).

Version 2.6.4

01 Dec 12:47
Compare
Choose a tag to compare
  • Merged #111, #106
  • Updated OkHttp to 3.9.1
  • Updated Gradle and buildTools.

Version 2.6.3

28 Jul 23:26
Compare
Choose a tag to compare

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

01 Apr 11:33
Compare
Choose a tag to compare
  • 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

31 Mar 15:06
Compare
Choose a tag to compare
  • Added support for versionCode when using your own server: JSON / XML.
  • Release notes are now optional for JSON files.

Version 2.5.4

21 Mar 16:18
Compare
Choose a tag to compare

This release has a quick fix for the previous 2.5.3 release.


Version 2.5.2

09 Mar 14:45
Compare
Choose a tag to compare
  • Added possibility for custom listeners: .setButtonUpdateClickListener(...), .setButtonDismissClickListener(...), .setButtonDoNotShowAgainClickListener(...). Thanks to @joen93.
  • Added Dutch translation.
  • Updated OkHttp to 3.6.0

Version 2.5.1

03 Jan 16:21
Compare
Choose a tag to compare
  • Fixed #64, #66. Thanks to @pengrad.
  • Added Russian and Vietnamese translations. Thanks to @pengrad.
  • Updated OkHttp to 3.5.0

🎉 Happy New Year 🎉

Version 2.5

29 Nov 20:16
Compare
Choose a tag to compare

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