0
0
mirror of https://github.com/florisboard/florisboard.git synced 2024-09-19 19:42:20 +02:00

Fix missing beta variant build issue (#2450)

This commit is contained in:
Lars Mühlbauer 2024-04-20 16:52:56 +02:00 committed by GitHub
parent 30750d7842
commit 7724b07a75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,6 +36,13 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"),
)
}
create("beta") {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8