1
0
Fork 0
mirror of https://github.com/bitwarden/android.git synced 2025-03-29 09:09:20 +03:00

[PM-10440] Enable minification on beta build variants ()

This commit is contained in:
Patrick Honkonen 2024-07-31 18:19:52 -04:00 committed by GitHub
parent 1f8d50e788
commit d558f94e40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,8 +65,13 @@ android {
// Beta and Release variants are identical except beta has a different package name
create("beta") {
initWith(buildTypes.getByName("release"))
applicationIdSuffix = ".beta"
isDebuggable = false
isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
release {
isDebuggable = false