diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2024-07-15 18:41:21 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2024-07-15 18:41:21 +0200 |
| commit | 4a8f6807c9d3ee6bcfac25aee832163036b4e6fe (patch) | |
| tree | 891ca393b33bef4f540b283d1cc0a5764c4a1690 /app/src/main/res/values | |
| parent | bd572110426352e0312ffd41b4108fb859e673ae (diff) | |
Remove values-v23 as minSdk = 29
Fixes lint warning.
Diffstat (limited to 'app/src/main/res/values')
| -rw-r--r-- | app/src/main/res/values/themes.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index 6c0b175..eae96b7 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -5,5 +5,11 @@ <!-- <item name="colorPrimary">@color/my_light_primary</item> --> </style> - <style name="Theme.CleverSync" parent="Base.Theme.CleverSync" /> + <style name="Theme.CleverSync" parent="Base.Theme.CleverSync"> + <!-- Transparent system bars for edge-to-edge. --> + <item name="android:navigationBarColor">@android:color/transparent + </item> + <item name="android:statusBarColor">@android:color/transparent</item> + <item name="android:windowLightStatusBar">?attr/isLightTheme</item> + </style> </resources> |
