根据此答案,如何解决“您的APK的版本代码必须高于2。” 在Google Play的开发者控制台中?我刚刚将版本代码从2更改为3,但无法上传构建。
这是我上传apk之前的旧清单
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage name"
android:installLocation="auto"
android:versionCode="28"
android:versionName="1.0028" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
.....
这是我必须在android开发人员控制台上上传的新版本代码。看我的清单
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage name"
android:installLocation="auto"
android:versionCode="2"
android:versionName="2.0001" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
......
我不知道是什么问题。有什么帮助吗?