-
Notifications
You must be signed in to change notification settings - Fork 413
UpdateFrom.GOOGLE_PLAY
Javier Santos edited this page Jul 6, 2018
·
10 revisions
new AppUpdater(this)
.setUpdateFrom(UpdateFrom.GOOGLE_PLAY)
.start();
- Your app must be published on Google Play with one production release at least.
- Apps with updates that varies by devices are not supported.
- The latest update retrieved by the library will be the latest production one.
- Google Play doesn't support
versionCode
. You should useUpdateFrom.JSON
orUpdateFrom.XML
instead. -
Update#getLatestVersionCode()
will be null when usingAppUpdaterUtils
. You should useUpdate#getLatestVersion()
instead.
ℹ️ Using UpdateFrom.GOOGLE PLAY
is not recommended as the Google Play website may vary at any time, use UpdateFrom.XML or UpdateFrom.JSON instead. More info in issue #132.