大家好,这是我对我的应用程序的第一次更新...我正在阅读并注意到我需要在manifest.xml中更改我的应用程序的versionCode和versionName,我这样做并点击Build->生成签名APK然后在开发者控制台中选择我的应用程序,然后在左侧菜单中单击APK然后上传新的APK并选择我新生成的APK但我一直收到同样的错误:
上传错误您必须为APK使用其他版本代码,因为 你已经有一个版本代码为1的文件。
但我不知道为什么我收到此错误这是我的manifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ve.net.gorydev.bachaqueofamilia"
android:versionCode="2"
android:versionName="1.1">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我应该改变什么?记住这是我的第一次更新
答案 0 :(得分:1)
versionCode和versionName也在app / build.gradle中定义;在那里定义它们你应该没有问题。
android {
defaultConfig{
versionCode 2
versionName "1.1"
}
}