From 8762519052125a72732980de7e9cb2a6ae9829e0 Mon Sep 17 00:00:00 2001 From: Guy Tepper Date: Mon, 3 May 2021 08:15:59 +0300 Subject: [PATCH] :lipstick: Missing inputBackground color on Android + Android release --- android/app/build.gradle | 2 +- android/app/src/main/res/values-night/colors.xml | 1 + android/app/src/main/res/values/colors.xml | 1 + app/theme/color.ts | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 751538b6..8720a949 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -134,7 +134,7 @@ android { applicationId "com.betterrail" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 1 + versionCode 6 versionName "1.1" } splits { diff --git a/android/app/src/main/res/values-night/colors.xml b/android/app/src/main/res/values-night/colors.xml index a26c917c..743acc1f 100644 --- a/android/app/src/main/res/values-night/colors.xml +++ b/android/app/src/main/res/values-night/colors.xml @@ -5,6 +5,7 @@ #ffffff #98989f #afb4bd + #2c2c2e #3a3a3c #48484a #0c83ff diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml index da13dde0..dede03ac 100644 --- a/android/app/src/main/res/values/colors.xml +++ b/android/app/src/main/res/values/colors.xml @@ -5,6 +5,7 @@ #111111 #757575 #afb4bd + #ffffff #e0e1e6 #aeaeb2 #2196F3 diff --git a/app/theme/color.ts b/app/theme/color.ts index f18acd5a..ca46880b 100644 --- a/app/theme/color.ts +++ b/app/theme/color.ts @@ -68,7 +68,7 @@ export const color = { inputBackground: Platform.select({ ios: DynamicColorIOS({ light: PlatformColor("systemBackground"), dark: PlatformColor("systemGray5") }), - android: PlatformColor("@color/secondaryBackground"), + android: PlatformColor("@color/inputBackground"), }), line: palette.offWhite,