86 lines
3.2 KiB
XML
86 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen"
|
|
android:required="false"/>
|
|
<uses-feature
|
|
android:name="android.hardware.gamepad"
|
|
android:required="false"/>
|
|
|
|
<uses-feature android:glEsVersion="0x00030002" android:required="true" />
|
|
|
|
<uses-feature android:name="android.hardware.opengles.aep" android:required="true" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
<application
|
|
android:name="org.yuzu.yuzu_emu.YuzuApplication"
|
|
android:label="@string/app_name"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:allowBackup="false"
|
|
android:supportsRtl="true"
|
|
android:isGame="true"
|
|
android:banner="@drawable/ic_launcher"
|
|
android:extractNativeLibs="true"
|
|
android:fullBackupContent="@xml/data_extraction_rules"
|
|
android:dataExtractionRules="@xml/data_extraction_rules_api_31">
|
|
|
|
<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"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="org.yuzu.yuzu_emu.features.settings.ui.SettingsActivity"
|
|
android:theme="@style/Theme.Yuzu.Main"
|
|
android:label="@string/preferences_settings"/>
|
|
|
|
<activity
|
|
android:name="org.yuzu.yuzu_emu.activities.EmulationActivity"
|
|
android:theme="@style/Theme.Yuzu.Main"
|
|
android:launchMode="singleTop"
|
|
android:screenOrientation="userLandscape" />
|
|
|
|
<service android:name="org.yuzu.yuzu_emu.utils.ForegroundService"/>
|
|
|
|
<provider
|
|
android:name="org.yuzu.yuzu_emu.model.GameProvider"
|
|
android:authorities="${applicationId}.provider"
|
|
android:enabled="true"
|
|
android:exported="false">
|
|
</provider>
|
|
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="${applicationId}.filesprovider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/nnf_provider_paths" />
|
|
</provider>
|
|
|
|
<provider
|
|
android:name=".features.DocumentProvider"
|
|
android:authorities="${applicationId}.user"
|
|
android:grantUriPermissions="true"
|
|
android:exported="true"
|
|
android:permission="android.permission.MANAGE_DOCUMENTS">
|
|
<intent-filter>
|
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
|
</intent-filter>
|
|
</provider>
|
|
|
|
</application>
|
|
|
|
</manifest>
|