4
Every time I export the google app from that message:

Even though I changed Androidmanifest.xml:
android:versionCode="2"
android:versionName="1.0.2"
Procedure I’m doing:

I’m exporting right?
4
Every time I export the google app from that message:

Even though I changed Androidmanifest.xml:
android:versionCode="2"
android:versionName="1.0.2"
Procedure I’m doing:

I’m exporting right?
4
Your procedure is correct, but the problem is that Gradle rewrites these attributes in AndroidManifest.
Search the gradle.build of its main module, by the following:
defaultConfig {
    applicationId "xxx.xxx.xxx.xxxxxxxxx"
    minSdkVersion 10
    targetSdkVersion 20
    versionCode 1
    versionName "1.0"
}
Change the versionCode and the versionName to the desired.
Browser other questions tagged android android-studio apk
You are not signed in. Login or sign up in order to post.