Google Play console Signed apk version code error

Google Play console Signed apk version code error

我只上传了下一个版本代码的apk 例如我以前的版本代码是 23 现在我上传了版本代码 24.But Google 的 apk 播放控制台显示 "You uploaded an APK or Android App Bundle with an invalid version code, a version code must be specified and should be a positive integer"

我没有得到任何解决方案

进入 build.gradle 并在 defaultConfig 元素中设置版本代码和名称

defaultConfig {
    minSdkVersion 9
    targetSdkVersion 19
    versionCode 1
    versionName "1.0"
}