在Play商店中更新我的应用时出错

时间:2018-06-26 07:21:01

标签: android

我正在Google Play商店上更新我的Android应用程序,我以前的应用程序版本是 2.0.0 ,更新的应用程序版本是 2.1.0 ,但是当我更新时它在游戏商店中显示错误,即应用程序已经有2个主要版本了吗?

1 个答案:

答案 0 :(得分:0)

请同时更新您的 VersionCode VersionName 。为此:

在您的 Gradle脚本中打开> build.gradle(Module:app),该文件将如下所示:

android {
compileSdkVersion 27
defaultConfig {
    applicationId "com.madaris.tanzeem.tanzeemulmadaris"
    minSdkVersion 15
    targetSdkVersion 27
    versionCode 2
    versionName "2.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

在这里您还应该更改 VersionCode ! 祝您编码愉快!