2013-03-20 04:53:09 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-05-01 01:15:10 +03:00
|
|
|
package="org.dolphinemu.dolphinemu">
|
2013-09-10 16:29:05 +03:00
|
|
|
|
2015-06-04 02:27:09 +03:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.touchscreen"
|
|
|
|
android:required="false"/>
|
2015-06-05 23:26:49 +03:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.gamepad"
|
|
|
|
android:required="false"/>
|
2015-06-04 02:27:09 +03:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.software.leanback"
|
|
|
|
android:required="false"/>
|
|
|
|
|
2014-12-20 23:43:51 +02:00
|
|
|
<uses-feature android:glEsVersion="0x00030000" />
|
2013-08-21 02:39:00 +03:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2015-01-24 07:15:56 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2013-08-21 02:39:00 +03:00
|
|
|
|
|
|
|
<application
|
2016-01-09 19:28:29 +02:00
|
|
|
android:name=".DolphinApplication"
|
2015-06-02 23:44:31 +03:00
|
|
|
android:label="@string/app_name"
|
2013-09-23 08:23:10 +03:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2014-11-14 20:39:15 +02:00
|
|
|
android:allowBackup="true"
|
2015-06-04 02:27:09 +03:00
|
|
|
android:supportsRtl="true"
|
2015-06-05 23:26:49 +03:00
|
|
|
android:isGame="true"
|
2015-06-04 02:27:09 +03:00
|
|
|
android:banner="@drawable/banner_tv">
|
2018-05-03 04:21:28 +03:00
|
|
|
<meta-data android:name="android.max_aspect" android:value="2.1" />
|
2015-05-07 03:12:58 +03:00
|
|
|
|
|
|
|
<activity
|
2016-01-10 01:08:04 +02:00
|
|
|
android:name=".ui.main.MainActivity"
|
2015-05-09 19:36:17 +03:00
|
|
|
android:theme="@style/DolphinGamecube">
|
2015-05-07 03:12:58 +03:00
|
|
|
|
|
|
|
<!-- 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>
|
|
|
|
|
2015-05-09 19:36:17 +03:00
|
|
|
<activity
|
2016-01-10 19:10:02 +02:00
|
|
|
android:name=".ui.main.TvMainActivity"
|
2015-07-15 05:35:52 +03:00
|
|
|
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>
|
|
|
|
|
2015-05-15 05:48:22 +03:00
|
|
|
<activity
|
2016-01-19 01:27:04 +02:00
|
|
|
android:name=".ui.settings.SettingsActivity"
|
2015-05-15 05:48:22 +03:00
|
|
|
android:theme="@style/DolphinSettingsGamecube"
|
2016-01-31 17:06:00 +02:00
|
|
|
android:label="@string/preferences_settings"/>
|
2015-05-15 05:48:22 +03:00
|
|
|
|
2014-04-28 00:13:09 +03:00
|
|
|
<activity
|
2015-05-20 14:07:17 +03:00
|
|
|
android:name=".activities.EmulationActivity"
|
|
|
|
android:theme="@style/DolphinEmulationGamecube"/>
|
|
|
|
|
2018-01-03 10:40:23 +02:00
|
|
|
<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>
|
2013-09-10 16:29:05 +03:00
|
|
|
|
2017-12-17 02:09:55 +02:00
|
|
|
<service android:name=".services.DirectoryInitializationService"/>
|
2018-06-01 10:36:29 +03:00
|
|
|
<service android:name=".services.GameFileCacheService"/>
|
2015-05-18 01:12:11 +03:00
|
|
|
|
2018-01-03 10:40:23 +02:00
|
|
|
<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>
|
|
|
|
|
2013-03-20 04:53:09 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|
2015-05-01 01:15:10 +03:00
|
|
|
|