标签:
默认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");
}
}
Android Studio 打包apk,自动追加版本号和版本名称
标签:
原文地址:http://blog.csdn.net/yy1300326388/article/details/50579649