我一直在尝试使用新版本更新我的应用程序,并且在开发人员控制台上遇到了此问题。我有这样的错误:


我检查了先前版​​本的版本,看我是否做错了什么,但是还是一样。



这是我更新的xml文件

<application
        android:allowBackup="true"
        android:id="@+id/title"
        android:icon="@mipmap/iron"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
        android:versionCode="100"
        android:versionName="2.0"
        >

最佳答案

看起来您已经在Play商店中拥有版本1。为了能够更新它,您需要在android项目的build.gradle文件中更改版本号。

同步您的项目,然后生成新的APK。

我怀疑只是更新清单是否行得通。

07-28 02:01
查看更多