现在都是用 Kotlin Gradle DSL 来配置 Android 项目的
那么该如何自定义生成apk的文件名呢?
只需要在app目录下的build.gradle.kts
的buildTypes
中release
处添加
applicationVariants.all {
outputs.all {
if (this is com.android.build.gradle.internal.api.BaseVariantOutputImpl) {
this.outputFileName = "XXX_${versionName}.apk"
}
}
}
即可