最佳答案
我在用这个密码
applicationVariants.all { variant ->
variant.outputs.each { output ->
def SEP = "_"
def flavor = variant.productFlavors[0].name
def buildType =
variant.variantData.variantConfiguration.buildType.name
def version = variant.versionName
def date = new Date()
def formattedDate = date.format('ddMMyy_HHmm')
def newApkName = PROJECT_NAME + SEP + flavor + SEP + buildType + SEP + version + SEP + formattedDate + ".apk"
def file = new File(newApkName)
output.outputFile = file
}
}
当我构建新的 apk 时,要更改 apk 文件的名称,但是因为我使用了 Android Studio 3.0金丝雀2,所以出现了这个错误:
无法设置只读属性“ outputFile”的值... 。