mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-11 03:48:01 +02:00
1c027bc148
Deduplicates code, and gets rid of some problems the old code had (such as: bad performance when calling native functions, only one disc showing up for multi-disc games, Wii banners being low-res, unnecessarily much effort being needed for adding more metadata).
90 lines
3.2 KiB
XML
90 lines
3.2 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.dolphinemu.dolphinemu">
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen"
|
|
android:required="false"/>
|
|
<uses-feature
|
|
android:name="android.hardware.gamepad"
|
|
android:required="false"/>
|
|
<uses-feature
|
|
android:name="android.software.leanback"
|
|
android:required="false"/>
|
|
|
|
<uses-feature android:glEsVersion="0x00030000" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:name=".DolphinApplication"
|
|
android:label="@string/app_name"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:allowBackup="true"
|
|
android:supportsRtl="true"
|
|
android:isGame="true"
|
|
android:banner="@drawable/banner_tv">
|
|
<meta-data android:name="android.max_aspect" android:value="2.1" />
|
|
|
|
<activity
|
|
android:name=".ui.main.MainActivity"
|
|
android:theme="@style/DolphinGamecube">
|
|
|
|
<!-- 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=".ui.main.TvMainActivity"
|
|
android:theme="@style/DolphinTvGamecube">
|
|
|
|
<!-- 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.LEANBACK_LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.settings.SettingsActivity"
|
|
android:theme="@style/DolphinSettingsGamecube"
|
|
android:label="@string/preferences_settings"/>
|
|
|
|
<activity
|
|
android:name=".activities.EmulationActivity"
|
|
android:theme="@style/DolphinEmulationGamecube"/>
|
|
|
|
<activity
|
|
android:name=".activities.CustomFilePickerActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/FilePickerTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.GET_CONTENT" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service android:name=".services.DirectoryInitializationService"/>
|
|
<service android:name=".services.GameFileCacheService"/>
|
|
|
|
<provider
|
|
android:name="android.support.v4.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>
|
|
|
|
</application>
|
|
|
|
</manifest>
|
|
|