mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 09:25:45 +00:00
Added support for all major Game hubs.
Added full support for Samsung Game hub and initial support for Xiaomi, Asus and Oneplus, as well as a general rewrite. Signed-off-by: Bix <xq9zp7f2@proton.me>
This commit is contained in:
parent
15fb1f78b3
commit
0329234c25
1 changed files with 19 additions and 21 deletions
|
@ -16,6 +16,10 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" android:required="false" />
|
||||
<uses-permission android:name="com.miui.powerkeeper.permission.SEND_OPTIMIZE" android:required="false" />
|
||||
<uses-permission android:name="com.asus.gamecenter.permission.GAMETUNER" android:required="false" />
|
||||
<uses-permission android:name="com.oneplus.gamespace.permission.OPGAME" android:required="false" />
|
||||
|
||||
<application
|
||||
android:name="org.yuzu.yuzu_emu.YuzuApplication"
|
||||
|
@ -31,27 +35,29 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
android:dataExtractionRules="@xml/data_extraction_rules_api_31"
|
||||
android:enableOnBackInvokedCallback="true">
|
||||
|
||||
<meta-data
|
||||
android:name="com.samsung.android.gamehub"
|
||||
android:value="true" />
|
||||
<meta-data android:name="com.samsung.android.gamehub" android:value="true" />
|
||||
<meta-data android:name="com.samsung.android.gamehub.pkgname" android:value="org.yuzu.yuzu_emu" />
|
||||
<meta-data android:name="com.samsung.android.game.gos" android:value="true" />
|
||||
<meta-data android:name="com.miui.powerkeeper.gamebooster" android:value="true" />
|
||||
<meta-data android:name="com.xiaomi.gamecenter.sdk.service.enabled" android:value="true" />
|
||||
<meta-data android:name="com.asus.gamecenter.gamebooster" android:value="true" />
|
||||
<meta-data android:name="com.oneplus.gamespace.gamebooster" android:value="true" />
|
||||
<meta-data android:name="android.game_mode_config" android:resource="@xml/game_mode_config" />
|
||||
|
||||
<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"
|
||||
android:theme="@style/Theme.Yuzu.Splash.Main">
|
||||
|
||||
<!-- This intentfilter marks this Activity as the one that gets launched from Home screen. -->
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<category android:name="android.intent.category.GAME" />
|
||||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="com.miui.gamecenter.GAME_BOOSTER_LAUNCH" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
|
@ -66,24 +72,17 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
android:supportsPictureInPicture="true"
|
||||
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
|
||||
android:exported="true">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.nfc.action.TECH_DISCOVERED" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="application/octet-stream" />
|
||||
</intent-filter>
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data
|
||||
android:mimeType="application/octet-stream"
|
||||
android:scheme="content"/>
|
||||
<data android:mimeType="application/octet-stream" android:scheme="content"/>
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="android.nfc.action.TECH_DISCOVERED"
|
||||
android:resource="@xml/nfc_tech_filter" />
|
||||
<meta-data android:name="android.nfc.action.TECH_DISCOVERED" android:resource="@xml/nfc_tech_filter" />
|
||||
</activity>
|
||||
|
||||
<provider
|
||||
|
@ -98,5 +97,4 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
</provider>
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
</manifest>
|
Loading…
Add table
Add a link
Reference in a new issue