Kunal S. Kushwah
Kunal S. Kushwah

Reputation: 893

Updating android app in Google play requires change in both version and versioncode?

I am trying to update an app on Google PLay. Do i need to update both?

android:versionName and android:versionCode

I updated without changing the versionName, I ONLY changed the versionCode. Does it count as an upgrade? Will the user see the update available? Thanks in advance!

Upvotes: 4

Views: 1034

Answers (3)

Muhannad A.Alhariri
Muhannad A.Alhariri

Reputation: 3922

In Google play , The required change is versionCode version name is used only to track what version is listed on play store , in other words it is for users

Upvotes: 0

Tom Dezentje
Tom Dezentje

Reputation: 631

VersionCode needs to be changed. It's the value used by Android to determine your version. VersionName is shown in the playstore and is only used for users to see the update count.

Users will see the update but won't see a change in version number.

Upvotes: 0

Raghav Sood
Raghav Sood

Reputation: 82583

Yes, the user will still receive an update.

versionCode is the deciding factor when Google Play issues updates. Your versionName can stay the same for your app's entire existence, and Google Play will still issue updates.

Upvotes: 3

Related Questions