Remove last XML styles that were required for AppIntro

This commit is contained in:
Ricki Hirner 2024-06-25 15:06:52 +02:00
parent 85b29329eb
commit ccbe1d7645
2 changed files with 1 additions and 21 deletions

View file

@ -49,7 +49,7 @@
android:networkSecurityConfig="@xml/network_security_config"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar"
android:resizeableActivity="true"
tools:ignore="UnusedAttribute"
android:supportsRtl="true">

View file

@ -1,20 +0,0 @@
<!--
~ Copyright (c) 2013 2016 Ricki Hirner (bitfire web engineering).
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the GNU Public License v3.0
~ which accompanies this distribution, and is available at
~ http://www.gnu.org/licenses/gpl.html
-->
<resources>
<!-- app theme -->
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<!-- These non-Compose theme variables are required for AppIntro as long it doesn't support Compose: -->
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorPrimaryDark">@color/primaryDarkColor</item>
<item name="android:colorBackground">@android:color/white</item>
</style>
</resources>