Test button

This commit is contained in:
2021-10-09 14:34:05 +01:00
parent b9cfbaf4df
commit 8cbc732965
3 changed files with 21 additions and 2 deletions

View File

@@ -68,16 +68,18 @@ android {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
resValue "string", "debug_visibility", "gone"
manifestPlaceholders = [
appIcon: "@drawable/icon",
appIconRound: "@drawable/icon"
appIconRound: "@drawable/icon",
]
}
debug {
applicationIdSuffix ".debug"
resValue "string", "debug_visibility", "visible"
manifestPlaceholders = [
appIcon: "@drawable/icon_debug",
appIconRound: "@drawable/icon_debug"
appIconRound: "@drawable/icon_debug",
]
}
}