Use Theme.AppCompat.DayNight.

This commit is contained in:
Miku AuahDark
2022-05-14 23:20:03 +08:00
parent d107d36bbd
commit df8125b601
+6 -4
View File
@@ -8,14 +8,16 @@
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTask"
android:theme="@style/Theme.AppCompat">
android:theme="@style/Theme.AppCompat.DayNight">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Important: Do not change the activity class name for GameActivity!! -->
<!--
Important: GameActivity class name MUST be explicitly written as
"org.love2d.android.GameActivity" without any shortcuts.
-->
<activity
android:name="org.love2d.android.GameActivity"
android:exported="false"
@@ -29,7 +31,7 @@
android:name=".AboutActivity"
android:exported="false"
android:parentActivityName=".MainActivity"
android:theme="@style/Theme.AppCompat" />
android:theme="@style/Theme.AppCompat.DayNight" />
</application>
</manifest>