根据this answer如何解决“您的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" /> ......
我不知道是什么问题。有什么帮助吗?
android:versionCode=”28”
你以前versionCode是 28。你应该把它增加 1 到 29。
versionCode
android:versionCode="29"
据推测,您以前的应用程序版本是 1 到 28。通过使用 versionCode 3 发布,您与已经使用此 versionCode 发布的应用程序的先前版本发生冲突。