简体   繁体   中英

Google Play Alpha and Beta testing APK version

I'm trying to use the Alpha and Beta testing mechanism in Google Play Console, my question is: Are versionCodes of APKs in Alpha and PROD related? meaning if I upload an APK with versionCode 9 to Alpha, do I have to continue in PROD with versionCode of 10? or can I upload to PROD versionCode of 6?

yes they are related. Version codes should always be bigger than the .apk you uploaded before.

for example:

  • current Production is 9
  • to upload an Alpha it must be 10
  • then you upload a new one to alpha it must be 11
  • then you migrate it to beta.
  • then you upload a new beta it must be 12
  • then you finalise some details and going to upload to production it must be 13

but remember that version codes are different than version names. codes are usually not user visible. Names are. So you can still make it look like a normal upgrade path to the production users.

for example:

  • production 9 is named v1.0.5
  • then production 13 will be named v1.0.6

and all the others you called v1.0.6.ALPHA1, v1.0.6.ALPHA2, v1.0.6.BETA1, v1.0.6.BETA2

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM