Compare commits

...

4 Commits

Author SHA1 Message Date
Emma
3deab1cba4 Merge 8161e19cda into 148ad0cf0b 2024-01-03 00:47:20 +00:00
Emma
8161e19cda Update game_mode_config.xml 2024-01-03 01:47:17 +01:00
Emma
40dae7d1fd android: implement support for google game dashboard 2024-01-03 01:03:44 +01:00
Emma
c823150241 android: implement support for google game dashboard 2024-01-03 01:02:36 +01:00
2 changed files with 8 additions and 0 deletions

View File

@@ -31,6 +31,9 @@ SPDX-License-Identifier: GPL-3.0-or-later
android:dataExtractionRules="@xml/data_extraction_rules_api_31"
android:enableOnBackInvokedCallback="true">
<meta-data android:name="android.game_mode_config"
android:resource="@xml/game_mode_config" />
<activity
android:name="org.yuzu.yuzu_emu.ui.main.MainActivity"
android:exported="true"

View File

@@ -0,0 +1,5 @@
<?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"/>