github javiersantos/AppUpdater 1.1
Version 1.1

latest releases: 2.7, 2.6.5, 2.6.4...
8 years ago
  • 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();

Don't miss a new AppUpdater release

NewReleases is sending notifications on new releases.