Android studio打包,自动命名小方法,修改gradl
2020-07-15 本文已影响0人
wenju
在App下gradle中添加
//修改生成的apk名字,格式为 app名_版本号_code.apk
Android{
...
applicationVariants.all {
variant ->
variant.outputs.all {
def apkName
if (Boolean.parseBoolean(RELEASE)) {
apkName = "{getDate()}_V{getProductName()}_V{getDate()}${DEBUG_VERSION_CODE}.apk"
}
outputFileName = apkName
}
}
...
}
//获取产品的名字
def static getProductName() {
return "MIKAI"
}
//获取日期
def static getDate() {
def date = new Date()
def formattedDate = date.format('yyyyMMdd')
return formattedDate
}