lifting the application launcher colour to the application module

This commit is contained in:
Adam Brown 2022-08-08 14:24:01 +01:00
parent c7f945c8b5
commit d2ca4edc6d
3 changed files with 3 additions and 5 deletions

View File

@ -236,6 +236,7 @@ android {
debug {
applicationIdSuffix ".debug"
signingConfig signingConfigs.debug
resValue "color", "launcher_background", "#0DBD8B"
if (project.hasProperty("coverage")) {
testCoverageEnabled = coverage.enableTestCoverage
@ -243,6 +244,7 @@ android {
}
release {
resValue "color", "launcher_background", "#0DBD8B"
postprocessing {
removeUnusedCode true
removeUnusedResources true
@ -258,6 +260,7 @@ android {
initWith release
applicationIdSuffix ".nightly"
versionNameSuffix "-nightly"
resValue "color", "launcher_background", "#07007E"
// We need to copy paste this block, this is not done automatically by `initWith release`
postprocessing {

View File

@ -64,21 +64,16 @@ android {
buildTypes {
debug {
resValue "string", "app_name", "Element dbg"
resValue "color", "launcher_background", "#0DBD8B"
if (project.hasProperty("coverage")) {
testCoverageEnabled = coverage.enableTestCoverage
}
}
nightly {
initWith release
// Just override the background color of the launcher icon for the nightly build.
resValue "color", "launcher_background", "#07007E"
}
release {
resValue "string", "app_name", "Element"
resValue "color", "launcher_background", "#0DBD8B"
}
}
flavorDimensions "store"