BIT-139: Distinguish dev and release builds (#31)

This commit is contained in:
Brian Yencho 2023-09-06 11:38:04 -05:00 committed by Álison Fernandes
parent be4c710197
commit 7ba13a771f
3 changed files with 12 additions and 2 deletions

View file

@ -24,8 +24,14 @@ android {
}
buildTypes {
release {
debug {
applicationIdSuffix = ".dev"
isDebuggable = true
isMinifyEnabled = false
}
release {
isDebuggable = false
isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"

View file

@ -1,6 +1,6 @@
<resources>
<!--Common-->
<string name="app_name">Bitwarden</string>
<string name="app_name">Bitwarden Dev</string>
<!--Create Account Screen-->
<string name="title_create_account">Create Account</string>

View file

@ -0,0 +1,4 @@
<resources>
<!--Common-->
<string name="app_name">Bitwarden</string>
</resources>