Skip to content

Releases: javiersantos/AppUpdater

Version 1.2.1

28 Feb 15:48
Compare
Choose a tag to compare
  • Fixed issue on certain Google Play apps showing "Varies by Device".
  • Update AppCompat to 23.2.0
  • Snackbar was displaying the installed version instead the latest one.
  • Removed app_name to avoid Gradle warning.

Update 1.2

23 Feb 16:00
Compare
Choose a tag to compare
  • Set a custom title, description and buttons text for the dialogs.
// Customize the dialog title, description and buttons
.setDialogTitleWhenUpdateAvailable("Update available")
.setDialogDescriptionWhenUpdateAvailable("Check out the latest version available of my app!")
.setDialogButtonUpdate("Update now?")
.setDialogButtonDoNotShowAgain("Huh, not interested")
.setDialogTitleWhenUpdateNotAvailable("Update not available")
.setDialogDescriptionWhenUpdateNotAvailable("No update available. Check for updates again later!")
  • French translation.

Version 1.1

05 Feb 17:32
Compare
Choose a tag to compare
  • init() method has been deprecated, use start() instead.
  • Added AppUpdaterUtils class. The withListener() asynchronous call returns an string with the latest version available and a boolean comparing the installed version with the latest one.
new AppUpdaterUtils(this)
    .withListener(new AppUpdaterUtils.AppUpdaterListener() {
        @Override
        public void onSuccess(String latestVersion, Boolean isUpdateAvailable) {
            Log.d("AppUpdater", latestVersion + ", " + Boolean.toString(isUpdateAvailable));
        }).show();

Version 1.0.3

05 Feb 01:08
Compare
Choose a tag to compare
  • Changed default value of the showEvery(int) method from 5 to 1 (always).
  • Fixed showEvery(int) method not working properly.
  • Switched from the deprecated Apache HTTP Client to HttpURLConnection.
  • German and Catalan translations.

Version 1.0.2

03 Feb 23:02
Compare
Choose a tag to compare
  • Added F-Droid as a source for updates.

Version 1.0.1

02 Feb 20:55
Compare
Choose a tag to compare
  • Added documentation to the methods.
  • Spanish translation.

Version 1.0

02 Feb 19:28
Compare
Choose a tag to compare
Initial commit