Enable minify/proguard (#29)

This commit is contained in:
damontecres 2025-10-17 19:44:36 -04:00 committed by GitHub
parent 7f93262d06
commit e2db5ab4f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View file

@ -61,13 +61,16 @@ android {
buildTypes {
release {
isMinifyEnabled = false
isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
)
isDebuggable = false
}
debug {
isMinifyEnabled = false
isDebuggable = true
}
}
compileOptions {