Allow parallel installation of debug and release versions (#636)

* Allow parallel installation of debug and release versions
...by adding '.debug' suffix to application id

* add separate app name resource for debug build
This commit is contained in:
sal0max
2022-09-21 06:57:42 +02:00
committed by GitHub
parent 3c492d2626
commit 269a01ed42
4 changed files with 10 additions and 3 deletions

View File

@@ -29,6 +29,10 @@ android {
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
applicationIdSuffix '.debug'
versionNameSuffix ' (DEBUG)'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11