Skip to content

Commit a185d56

Browse files
committed
android [nfc]: Merge drawable-v21/ into drawable/
Our minSdkVersion is no less than 21 -- in fact it's 28 -- so the app only ever runs on devices that will pick the v21 version over the baseline version. So simplify that variation away. This may break local Android builds in an existing worktree; it seems like the Android Gradle Plugin is inappropriately caching where it expects to find this file and gets confused when that copy goes missing. To fix, clear the relevant cached data by running: $ tools/gradle --rerun-tasks \ :app:bundleDebugResources :app:bundleReleaseResources
1 parent e5a53bf commit a185d56

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

android/app/src/main/res/drawable-v21/launch_background.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

android/app/src/main/res/drawable/launch_background.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- Modify this file to customize your launch splash screen -->
33
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
4-
<item android:drawable="@android:color/white" />
4+
<item android:drawable="?android:colorBackground" />
55

66
<!-- You can insert your own image assets here -->
77
<!-- <item>

0 commit comments

Comments
 (0)