当前位置: 首页 > 知识库问答 >
问题:

上载失败您需要为您的APK使用不同的版本代码,因为您已经有一个版本代码为2的APK

黄俊智
2023-03-14

根据这个答案如何解决“你的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" />
        ......

共有1个答案

邵伟
2023-03-14
android:versionCode="28"

您以前的versioncode是28。你应该把它增加1到29。

android:versionCode="29"

想必你之前的应用程序版本是1到28。通过使用VersionCode3发布,您将与已使用此versionCode发布的应用程序的先前版本发生冲突。

 类似资料: