JohnD Active Member Licensed User Longtime User Dec 7, 2013 #1 I know there is a setting for VersionCode in the main module. However, It only allows integers. How do I set the app version so it will be recognized by Google Play. I want to be able to use something like "1.0.1".
I know there is a setting for VersionCode in the main module. However, It only allows integers. How do I set the app version so it will be recognized by Google Play. I want to be able to use something like "1.0.1".
NJDude Expert Licensed User Longtime User Dec 7, 2013 #2 The Version code is an integer, that cannot be changed, internally, Android/Google only cares about releases not sub-versions. I'm assuming you already know this, but to show sub-versions you can use #VersionName: Upvote 0
The Version code is an integer, that cannot be changed, internally, Android/Google only cares about releases not sub-versions. I'm assuming you already know this, but to show sub-versions you can use #VersionName:
Eric H Active Member Licensed User Longtime User Dec 7, 2013 #4 For my releases I use a 3 digit integer that matches my version name... So 203 would be my version and the name would be 2.03 Last edited: Dec 8, 2013 Upvote 0
For my releases I use a 3 digit integer that matches my version name... So 203 would be my version and the name would be 2.03