我在build.gradle中有这个代码重命名de apk但是因为Android Studio更新到2.2版不再有效。
apply plugin: 'com.android.application'
def getDate() {
def date = new Date()
def formattedDate = date.format('yyMMdd')
return formattedDate
}
def gitBranch() {
def branch = ""
def proc = "git rev-parse --abbrev-ref HEAD".execute()
proc.in.eachLine { line -> branch = line }
proc.err.eachLine { line -> println line }
proc.waitFor()
branch
}
android {
// defaultConfig, buildTypes, etc.
android.applicationVariants.all { variant ->
def versionName = variant.versionName.replaceAll('\\.', '_')
def date = getDate()
def versionCode = variant.versionCode
def branch = gitBranch()
variant.outputs.each { output ->
def newApkName
if (output.zipAlign) {
newApkName = "APP${versionName}D${date}VC${versionCode}-${branch}.apk"
output.outputFile = new File(output.outputFile.parent, newApkName)
}
}
}
}
我添加了一些println以查看newApk名称是否正常,我发现没问题。你,人们,知道任何替代方案来实现这一目标。我将永远感激。
答案 0 :(得分:2)
通过采用新的默认打包管道来改进构建性能,该管道在一个任务中处理压缩,签名和zipaligning。您可以通过将android.useOldPackaging = true添加到yourgradle.properties文件来恢复使用旧的打包工具。使用新的打包工具时,zipalignDebug任务不可用。但是,您可以通过调用createZipAlignTask(String taskName,File inputFile,File outputFile)方法自己创建一个。
从发行说明: https://developer.android.com/studio/releases/gradle-plugin.html#revisions