나는이 코드를 사용하고 있었다
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'의 값을 설정할 수 없습니다 ....