如何在 android studio 中更改应用程序版本
How to change the version of app in android studio
我之前在 Play 商店上传了一个应用,现在我创建了该应用的第二个版本并准备在 Play 商店上传。我将 build.gradle(Module:app)
中的版本名称和代码从 1 更改为 2。它采用了该版本代码,但在 google 播放控制台中上传应用程序时,但在 Google 播放控制台中显示这个版本已经存在。换个版本重新上传。
在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:找到 "Project" 工具栏(如果您使用的是 windows,请按 Alt+1)
2:Inside 项目确保你打开了 Android 选项而不是项目或任何其他(它位于你刚打开的 window 的顶部)
3:Open"Gradle scripts"
4:Click build.gradle(模块:应用程序)
It's very easy to do. Follow the simple steps
- 右键单击
app
文件夹 ---> Open Module Settings
- Select
Modules
在左侧面板的 Default Config
选项卡下,更新 Version Code
和 Version Name
.
版本代码总是一个整数。每次发布新版本的应用程序时,您都必须更新它。
您可以根据需要设置版本名称。例如,如果您修复小错误或更新,您的版本名称应为 2.1、2.2 等如果您修复主要错误或添加更多功能,您的版本名称应为 3.0、4.0 等。
我之前在 Play 商店上传了一个应用,现在我创建了该应用的第二个版本并准备在 Play 商店上传。我将 build.gradle(Module:app)
中的版本名称和代码从 1 更改为 2。它采用了该版本代码,但在 google 播放控制台中上传应用程序时,但在 Google 播放控制台中显示这个版本已经存在。换个版本重新上传。
在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:找到 "Project" 工具栏(如果您使用的是 windows,请按 Alt+1)
2:Inside 项目确保你打开了 Android 选项而不是项目或任何其他(它位于你刚打开的 window 的顶部)
3:Open"Gradle scripts"
4:Click build.gradle(模块:应用程序)
It's very easy to do. Follow the simple steps
- 右键单击
app
文件夹 --->Open Module Settings
- Select
Modules
在左侧面板的Default Config
选项卡下,更新Version Code
和Version Name
.
版本代码总是一个整数。每次发布新版本的应用程序时,您都必须更新它。
您可以根据需要设置版本名称。例如,如果您修复小错误或更新,您的版本名称应为 2.1、2.2 等如果您修复主要错误或添加更多功能,您的版本名称应为 3.0、4.0 等。