From f4e91399b401ea3592e8e4cd31a0710280ec380f Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Fri, 12 Jun 2026 11:47:10 +0200 Subject: [PATCH] fix(android): give launch splash a day/night background The Android 12+ system splash drew the launcher icon on the launch theme's colorBackground, which is white because AppTheme inherits the static Theme.AppCompat.Light.* family (not DayNight). The loading icon therefore showed a white background even in dark mode. Set android:windowSplashScreenBackground to @color/windowBackground, which has a values-night variant (#131314), so the splash tracks system day/night and matches the WebView surface painted by WebHelper. --- android/app/src/main/res/values/styles.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml index c46c76a5be..1d2eb41bb9 100644 --- a/android/app/src/main/res/values/styles.xml +++ b/android/app/src/main/res/values/styles.xml @@ -1,4 +1,4 @@ - +