在开发人员的控制台上更新新APK时出错

时间:2015-04-24 21:16:06

标签: android

我一直在尝试使用新版本更新我的应用,并且我在开发者控制台上遇到了这个问题。我有这样的错误: enter image description here

我查看了我之前版本的版本,看看我做错了什么,但它是一样的。

enter image description here

这是我更新的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"
        >

2 个答案:

答案 0 :(得分:3)

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

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

我怀疑只是更新清单才有用。

答案 1 :(得分:-1)

In order to define your app version dynamically, specify a custom method with def and call it, as such in your .gradle:

def computeVersionName() {
    return "2.0"
}

android {
    compileSdkVersion 19
    buildToolsVersion "19.0.0"

    defaultConfig {
        versionCode 12
        versionName computeVersionName()
        minSdkVersion 16
        targetSdkVersion 16
    }
}