Reputation: 121
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"
Upvotes: 7
Views: 6078
Reputation: 846
Yes, Google Play(Android Market) will send the notification to the Beta testers provided following are fulfilled
versionCode
of the APK on the market is higher than the versionCode
of an installed versionUpvotes: 12