All: set appIdSuffix for debug builds

This commit is contained in:
Felix 2019-05-06 22:48:29 +02:00
parent 27bf21c34e
commit 9e27e7e529
2 changed files with 4 additions and 3 deletions

View file

@ -40,7 +40,8 @@ android {
}
buildTypes {
debug {
manifestPlaceholders = [label: appName + "-dev"]
applicationIdSuffix ".debug"
manifestPlaceholders = [label: appName + "-debug"]
minifyEnabled false
useProguard false
}

View file

@ -47,8 +47,8 @@ android {
buildTypes {
debug {
applicationIdSuffix ".dev"
manifestPlaceholders = [label: appName + "-dev"]
applicationIdSuffix ".debug"
manifestPlaceholders = [label: appName + "-debug"]
minifyEnabled false
useProguard false
}