How do I name the application version in the Google Play Developer Console to put into production?

0

I uploaded my first 1.0 application in the alpha test area and then did an update and upload to alpha test with version code 2.0 Are you sure to use 2.0 or would it be better to use 1.1?

    
asked by anonymous 13.07.2016 / 16:51

1 answer

2

Hello @Thiago Philipp

Note that you have two codes for an app version, the "VersionCode" and "VersionName", versioncode is a control number for the store, only you will see that number and version is what will appear for the user, so you'd better use an integer number for versioncode and whatever you want for versionname.

I usually use it like this:

VersionCode 1 VersionName 1.0

Next update

VersionCode 2 VersionName 1.1

Next update

VersionCode 3 VersionName 1.2

and so on

    
13.07.2016 / 17:01