Вот мой файл kts build.config:
Код: Выделить всё
android {
...
applicationVariants.all { variant ->
variant.outputs
// default type don't have outputFileName field
.map { it as com.android.build.gradle.internal.api.ApkVariantOutputImpl }
.all { output ->
output.outputFileName = "MyAwesomeName.apk"
false
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/767 ... e-apk-name
Мобильная версия