mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 07:05:35 +03:00
[PM-10440] Enable minification on beta build variants (#3661)
This commit is contained in:
parent
1f8d50e788
commit
d558f94e40
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue