Change icon background color for nightly build

This commit is contained in:
Benoit Marty 2022-07-05 16:29:47 +02:00 committed by Benoit Marty
parent ea5b2b3433
commit a030769aea
2 changed files with 4 additions and 1 deletions

View File

@ -246,6 +246,7 @@ android {
debug {
applicationIdSuffix ".debug"
resValue "string", "app_name", "Element dbg"
resValue "color", "launcher_background", "#0DBD8B"
buildConfigField "boolean", "LOW_PRIVACY_LOG_ENABLE", "false"
// Set to true if you want to enable strict mode in debug
@ -260,6 +261,7 @@ android {
release {
resValue "string", "app_name", "Element"
resValue "color", "launcher_background", "#0DBD8B"
buildConfigField "boolean", "LOW_PRIVACY_LOG_ENABLE", "false"
buildConfigField "boolean", "ENABLE_STRICT_MODE_LOGS", "false"
@ -279,6 +281,7 @@ android {
initWith release
applicationIdSuffix ".nightly"
resValue "string", "app_name", "Element nightly"
resValue "color", "launcher_background", "#07007E"
matchingFallbacks = ['release']
signingConfig signingConfigs.nightly
}

View File

@ -5,6 +5,6 @@
android:viewportHeight="108">
<path
android:pathData="m0,0h108v108h-108z"
android:fillColor="#0DBD8B"
android:fillColor="@color/launcher_background"
android:fillType="evenOdd"/>
</vector>