私はこのコードを使用していました
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 Canary 2を使用しているため、次のエラーが表示されます:
読み取り専用プロパティ 'outputFile'の値を設定できません...。