bump sdk & gradle version, add game mode data to manifest

This commit is contained in:
CraftyBoss
2026-04-12 20:04:31 -07:00
parent c9661daf61
commit ffe9d1eb69
5 changed files with 15 additions and 5 deletions
@@ -14,11 +14,15 @@
<application
android:allowBackup="true"
android:hardwareAccelerated="true"
android:appCategory="game"
android:icon="@android:drawable/sym_def_app_icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
android:enableOnBackInvokedCallback="false">
<meta-data android:name="android.game_mode_config"
android:resource="@xml/game_mode_config" />
<activity
android:name="com.twilitrealm.dusk.DuskActivity"
android:alwaysRetainTaskState="true"
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<game-mode-config
xmlns:android="http://schemas.android.com/apk/res/android"
android:supportsBatteryGameMode="true"
android:supportsPerformanceGameMode="true"
/>