я використовував цей код
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' ....