在 Google Play 控制台上更改应用程序的代码版本

Change code version of an application on Google Play Console

我正在尝试在 GooglePlayConsole 上上传 .apk。这个 .apk 是用 Expo 生成的(并用 React-Native 编码)。

第一次我默认生成了,拿到了codeVersion: 1(基本就是一批权限)。但是,由于 "No need about this permissions",我的 .apk 已被授权。

所以我用另一个codeVersion(没有任何权限)重建了.apk,应该被批准。但是,当我尝试在 GooglePlayConsole 上上传 .apk 时(我之前未获批准),我收到一条错误消息:

You should use another code version for your APK or Andoid App Bundle. The code 1 is already use by another APK or Android App Bundle.

但我不知道在哪里(或是否)可以更改 GooglePlayConsole 上应用程序的代码版本。

我想删除该应用程序,但是一旦被拒绝就不可能了。

有截图:https://puu.sh/CFAQS/ff43b0ccb8.png

谢谢。

更改 gradle 应用中的版本代码:

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "applicationId"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1 ----- Here you should change your versionCode
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}