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