I've built an application and shared the apk (properly signed) to a few beta testers using an URL, not the Market.

Now my app is ready to go to the Market and I would like to know if an "update" notification will be displayed to the beta testers.

beta version: android:versionCode="4"

ready to market version: android:versionCode="6"

Thanks! Menon

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

As long as the versionCode of the APK on the market is higher than the versionCode of an installed version, the market will present an update for it.

So in this case your beta testers will get an update notification (as long as the package name is the same and the same certificate has been used to sign the app).

link|improve this answer
Thank you! Do you know where in the docs I could find this? – Cesar Menon Feb 3 at 16:09
I can't find where it explicitly states that this his how the Market behaves, but this is the closest thing I can find. – mcnicholls Feb 3 at 16:19
Just found this. It's under the multiple APK section, but it clearly states what happens for any given APK. – mcnicholls Feb 3 at 16:27
I still not sure if the beta tester (who never downloaded the app from the Market) will be notified. I believe he/she will, but I couldn't find any docs to confirm. Thank you again. – Cesar Menon Feb 3 at 16:28
1  
I did some testing here. With a clean account and device, the application was notified about updates... – Cesar Menon Feb 3 at 17:22
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.