I would like to upgrade an app's version number (that is displayed in the Play Store) in Android Studio, but I'm not an Android developer so I'm not sure what I'm doing is right. I googled how to do it, and the Android guide says I should have to do it in the AndroidManifest.xml
, but I can't find android:versionCode
, android:versionName
in that file. However I found these lines in the build.gradle
:
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.1"
The actual version number is 1.1 in the Play Store, so I assume I got this, but I would really appreciate if somebody could confirm it for me. So is it enough if I edit only the versionName
in the build.gradle
? Or do I need to do anything else? What is the common practice to do this?