UpdateHandler

Additional

Language
Java
Version
N/A
Created
May 31, 2016
Updated
Aug 25, 2017 (Retired)
Owner
AndroidMad / Mushtaq M A (androidmads)
Contributor
AndroidMad / Mushtaq M A (androidmads)
1
Activity
Badge
Generate
Download
Source code

UpdateHandler

Update Checker For Google Play

Featured In

Created By

How to Import the Library:

Gradle:

compile 'androidmads.updatehandler:updatehandler:1.0.5'

Maven:

<dependency>
  <groupId>androidmads.updatehandler</groupId>
  <artifactId>updatehandler</artifactId>
  <version>1.0.5</version>
  <type>pom</type>
</dependency>

How to use this Library:

After importing this library, use the following lines to check version update for your application automatically.

/** 
* This library works in release mode only with the same JKS key used for 
* your Previous Version
*/
new UpdateHandler.Builder(this)
 .setContent("New Version Found")
 .setTitle("Update Found")
 .setUpdateText("Yes")
 .setCancelText("No")
 .showDefaultAlert(true)
 .showWhatsNew(true)
 .setCheckerCount(2)
 .setOnUpdateFoundLister(new UpdateHandler.Builder.UpdateListener() {
  @Override
  public void onUpdateFound(boolean newVersion, String whatsNew) {
   tv.setText(tv.getText() + "\n\nUpdate Found : " + newVersion + "\n\nWhat's New\n" + whatsNew);
  }
 })
 .setOnUpdateClickLister(new UpdateHandler.Builder.UpdateClickListener() {
  @Override
  public void onUpdateClick(boolean newVersion, String whatsNew) {
   Log.v("onUpdateClick", String.valueOf(newVersion));
   Log.v("onUpdateClick", whatsNew);
  }
 })
 .setOnCancelClickLister(new UpdateHandler.Builder.UpdateCancelListener() {
  @Override
  public void onCancelClick() {
   Log.v("onCancelClick", "Cancelled");
  }
 })
 .build();

Demo:

Alert Without What' New

Alert With What' New

Update Prompt with Custom Listener

#License:

The MIT License (MIT)

Copyright (c) 2017 AndroidMad

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated 
documentation files (the "Software"), to deal in the Software without restriction, including without limitation 
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, 
and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED 
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 
IN THE SOFTWARE.