Version 1.1
init()
method has been deprecated, usestart()
instead.- Added
AppUpdaterUtils
class. ThewithListener()
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();