Does Google Play notify beta tester update notification?

I created an application and shared apk (correctly signed) with several beta testers using a URL not Market.

Now my application is ready to go to the market, and I would like to know if an update notification will be displayed for beta testers.

Beta: android:versionCode="4"

Ready version for sale: android:versionCode="6"

+6
source share
1 answer

Yes, Google Play (Android Market) will send a notification to the beta testers provided below:

  • versionCode APK on the market is higher than versionCode installed version
  • package name matches
  • the same certificate was used to sign the application
+10
source

Source: https://habr.com/ru/post/907589/


All Articles