All Versions
10
Latest Version
Avg Release Cycle
54 days
Latest Release
1053 days ago
Changelog History
Changelog History
-
v1.0.5 Changes
May 13, 2020- ➕ Add progress Listener to Flexible Update
- ➕ Add listener to return the number of staleness days after an update is notified Above features were added with the new play core library update 1.7.2
- ⚡️ Use Lifecycle observer to resume updates. No need to call
continueUpdate
in your activities ⚡️ You need to use UpdateInfoListener instead of onVersionCheckListener
mUpdateManager.addUpdateInfoListener(new UpdateInfoListener() { @Override public void onReceiveVersionCode(final int code) { // You can get the available version code of the apk in Google Play // Do something here } @Override public void onReceiveStalenessDays(final int days) { // Number of days passed since the user was notified of an update through the Google Play // If the user hasn't notified this will return -1 as days // You can decide the type of update you want to call } });
-
v1.0.5-alpha.1 Changes
October 06, 2019- ➕ Add Lifecycle observer to unregister the update state listener
-
v1.0.4 Changes
July 29, 2019- 🛠 Fix Jitpack issue in 1.0.3
- ➕ Add a method to get the Version code of the Available Update
- 🏗 Pass the Activity to the
Builder()
instead ofstart()
- ⚡️ Updated the demo app
-
v1.0.4-alpha.2 Changes
September 07, 2019- 🛠 Fix Send Intent Exception
-
v1.0.4-alpha.1 Changes
July 29, 2019- 🛠 Fix Jitpack issue in 1.0.3
- ➕ Add a method to get the Version code of the Available Update
- 🏗 Pass the Activity to the
Builder()
instead ofstart()
- ⚡️ Updated the demo app
-
v1.0.3 Changes
July 24, 2019➕ Added
- ⚡️ Method to get the Version code of the Available Update
🔄 Changed
- 🏗 Pass the Activity to the
Builder()
instead ofstart()
java mUpdateManager = UpdateManager.Builder(this);
- ⚡️ No need to pass Activity to
continueUpdate()
⚡️ You can find these codes in the demo app
-
v1.0.3-alpha.1 Changes
July 25, 2019➕ Added
- ⚡️ Debug Logs to the UpdateManager
-
v1.0.2
July 16, 2019 -
v1.0.1 Changes
July 16, 2019🔄 Changed
- 📦 Package name
-
v1.0 Changes
July 16, 2019🚀 :tada: Initial Release