Releases: javiersantos/AppUpdater
Releases · javiersantos/AppUpdater
Version 1.2.1
- 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
- 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
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();
Version 1.0.3
- 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
- Added F-Droid as a source for updates.
Version 1.0.1
- Added documentation to the methods.
- Spanish translation.
Version 1.0
Initial commit