Android Question How to upload a new version in Google play

shashkiranr

Active Member
Licensed User
Longtime User
Hi,

I currently have
B4X:
#VersionCode: 2
#VersionName: 2.1
in google play

I want to upload
B4X:
#VersionCode: 2
#VersionName: 2.2

But Google play says. The version number is same. Kindly upload a new apk.

How to upload version 2.2 of my application?

Regards,
SK
 

shashkiranr

Active Member
Licensed User
Longtime User
Hi Eumel,

Thank you for your reply. I want the app version to be 2.1, if i change version code to 3 then it will be version 3 right?

Regards,
SK
 
Upvote 0

TomA

Active Member
Licensed User
Longtime User
Basically, to upload a new version, you need to increment the Version Code by 1 each time. The Version Name is your version name or number and is not directly related to the Version Code - the Version Name is for your records to keep track of things so you know id the release is a minor fix of some kind (2.0 to 2.1) or a real new version with some added features (2.1 tof 3.0). You need to be aware of what version code goes with what version name in case someone reports a problem or something so you can relate it to the version you currently consider current.
 
Upvote 0
Top