我之前曾在Play商店中上传过一个应用,现在我创建了该应用的第二版,可以上传到Play商店中。我将build.gradle(Module:app)
中的版本名称和代码从1更改为2。使用了该版本代码,但是在google play控制台中上传应用程序时,但是在Google Play控制台中显示此版本已存在。更改版本并再次上传。
答案 0 :(得分:1)
在build.app中,您同时更改了版本代码和版本名称
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.sb.android.acg.test"
minSdkVersion 17
targetSdkVersion 27
versionCode 1 // update this
versionName "1.0" // update this
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
答案 1 :(得分:0)