Can't Update Versioncode
Solution 1:
Make sure you are NOT using the bin/manifest
as this is the built one, and will constantly be changed on build/export.
Use the proper manifest
which can be found in the root directory of the project.
I too did this for a while by accidently opening the bin folder and was baffled.
Solution 2:
I had same problem. I have changed 3 versions untill was done. There are many possibilities. You didn't type the key (password) correctly, Second try to Deactivate the first version then upload the new version. Try not to forget to change Version Code and Version name, and Export APK as first time. Hope it will help you.
Solution 3:
I've had this problem even when editing the proper manifest file (not bin/manifest) usually when editing a project from different machines.
In Eclipse, try "cleaning" the project and re-building. Should update the APK with the proper versions on your next install.
Solution 4:
If you are using gradle to build you must change it on build.gradle: android { compileSdkVersion 21 buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.xx.sadsa"
minSdkVersion 15
targetSdkVersion 21
versionCode 3
versionName "1.0"
}
}
Solution 5:
Also, if you're in Android Studio:
Build
> Generate Signed APK...
Post a Comment for "Can't Update Versioncode"