我正准备发布我的应用程序进行测试。我研究了我的应用程序的版本控制,发现它是在 app/build.gradle 文件中完成的。我需要知道我所拥有的是否足够我是否应该手动更改它?
这是build.gradle文件:
defaultConfig {
applicationId "com.example.myapp"
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
我应该保留这段代码还是应该有这样的代码:
defaultConfig {
applicationId "com.example.myapp"
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode "1.0"
versionName "1.0_beta"
}
谢谢