默认AS大包好的apk是app-deubg.apk
的,这样的话版本多了找出一个bug在哪个版本中存在的,就非常的麻烦了,我们追加版本号和版本名称后就非常好区分了。
- 配置方法
在gradle文件中的android节点下添加如下代码
android.applicationVariants.all {
variant -> variant.outputs.each {
output -> output.outputFile = new File(output.outputFile.parent, "DialogTest_" + defaultConfig.versionCode + "_v" + defaultConfig.versionName +"_"+buildType.name+ ".apk");
}
}
- 预览效果
时间: 2024-10-09 22:11:47