build: enable minification for release builds

Enable isMinifyEnabled and add proguardFiles for the release build type.

Made-with: Cursor
This commit is contained in:
cottongin
2026-03-18 13:36:04 -04:00
parent 7cd9d249d8
commit e03e32183b

View File

@@ -24,7 +24,11 @@ android {
buildTypes { buildTypes {
release { release {
isMinifyEnabled = false isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
} }
} }
compileOptions { compileOptions {