change name of generated file

This commit is contained in:
2025-11-25 14:34:28 +01:00
parent 3d642622f2
commit bcba89ab3a
4 changed files with 17 additions and 1 deletions

View File

@@ -29,6 +29,16 @@ android {
)
}
}
applicationVariants.all {
if (buildType.name == "release") {
outputs.all {
val output = this as com.android.build.gradle.internal.api.BaseVariantOutputImpl
output.outputFileName = "goGameClock.apk"
}
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11