如何在android studio中更改应用程序的版本

时间:2018-11-19 12:00:45

标签: android google-play-console

我之前曾在Play商店中上传过一个应用,现在我创建了该应用的第二版,可以上传到Play商店中。我将build.gradle(Module:app)中的版本名称和代码从1更改为2。使用了该版本代码,但是在google play控制台中上传应用程序时,但是在Google Play控制台中显示此版本已存在。更改版本并再次上传。

2 个答案:

答案 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)

这很容易做到。按照简单的步骤

  1. 右键单击app文件夹---> Open Module Settings

enter image description here

  1. 从左侧面板的Modules标签下选择Default Config,更新Version CodeVersion Name

enter image description here

版本代码始终是整数。每次发布新版本的应用程序时,都必须对其进行更新。

您可以根据需要设置版本名称。例如,如果您修复了一些小错误或更新,则您的版本名称应为2.1、2.2等;如果您修复了主要错误或添加了更多功能,则您的版本名称应为3.0、4.0等。