1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-27 02:05:26 +02:00

Add GitHub Actions workflow for beta builds

This commit is contained in:
oliexdev
2025-08-02 18:44:00 +02:00
parent 48d2fb85ce
commit 5513214d55
3 changed files with 53 additions and 0 deletions

View File

@@ -36,6 +36,17 @@ android {
manifestPlaceholders["appRoundIcon"] = "@mipmap/ic_launcher_beta_round"
}
}
applicationVariants.all {
val variant = this
outputs.all {
val output = this
if (output is com.android.build.gradle.internal.api.BaseVariantOutputImpl) {
output.outputFileName = "openScale-${variant.buildType.name}.apk"
}
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21