Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If I send a hotfix to a user, will they continue to get updates from the Play Store?

Say I have an application that users have installed from the Play Store, if one of my users reports a bug and I want to send them a patched version of the app to test, they can install it to their phone just fine. But if I then update the app on the Play Store, will the user get the update? My testing seems to indicate this is the case, but is there any gotchas?

The way my build process works is that each time I build, it gets a higher version code, so the patched version will have a higher version code that the one currently in the Play Store and then the version I upload to the Play Store after sending my user the patch will have a higher version code again.

like image 300
Dean Harding Avatar asked Jan 16 '13 15:01

Dean Harding


People also ask

How do I notify people of an Android app update?

Google Play will notify your users that the app has an update via the notification bar. If you set up a notification system yourself, the likely result would be that, although the user is notified of an update sooner, when he/she goes to Google Play to install the update it will not yet be available.

When you're published How long did it take to be visible on the Play Store?

This process typically takes 1-3 days to complete. Following an initial rollout, you can review your app's status and understand your app's availability on Google Play.


1 Answers

I'm taking a decently wild guess here, but it should work, provided the following are met:

  1. The version code of the apk on Google Play is higher than that of the hotfix
  2. The user originally installed the app from Google Play to begin with, and only updated it via side loading.
  3. The hotfix and the Google Play update are both signed with the same key.

I'm decently sure this will work, as I recall a long discussion about this on one of the android google groups that ended with success. I unfortunately cannot find it right now.

If you do try it out, please post back with the results.

like image 149
Raghav Sood Avatar answered Oct 05 '22 04:10

Raghav Sood