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"/>
|
|
|
|
|
2018-08-27 07:37:54 +03:00
|
|
|
<uses-feature android:glEsVersion="0x00030000"/>
|
2013-08-21 02:39:00 +03:00
|
|
|
|
2018-08-27 07:37:54 +03:00
|
|
|
<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"/>
|
|
|
|
<uses-permission android:name="com.android.providers.tv.permission.READ_EPG_DATA"/>
|
|
|
|
<uses-permission android:name="com.android.providers.tv.permission.WRITE_EPG_DATA"/>
|
2018-10-25 23:58:05 +03:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.VIBRATE"
|
|
|
|
android:required="false"/>
|
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"
|
2018-07-02 17:24:57 +03:00
|
|
|
android:allowBackup="false"
|
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-08-27 07:37:54 +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"
|
2018-08-11 07:13:31 +03:00
|
|
|
android:theme="@style/DolphinBase">
|
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"
|
2018-08-11 07:13:31 +03:00
|
|
|
android:theme="@style/DolphinTvBase">
|
2015-07-15 05:35:52 +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.LEANBACK_LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2015-05-15 05:48:22 +03:00
|
|
|
<activity
|
2018-07-23 22:57:24 +03:00
|
|
|
android:name=".features.settings.ui.SettingsActivity"
|
2018-08-11 07:13:31 +03:00
|
|
|
android:theme="@style/DolphinSettingsBase"
|
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"
|
2018-08-11 07:13:31 +03:00
|
|
|
android:theme="@style/DolphinEmulationBase"/>
|
2015-05-20 14:07:17 +03:00
|
|
|
|
2018-01-03 10:40:23 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.CustomFilePickerActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/FilePickerTheme">
|
|
|
|
<intent-filter>
|
2018-08-27 07:37:54 +03:00
|
|
|
<action android:name="android.intent.action.GET_CONTENT"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2018-01-03 10:40:23 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-08-11 07:15:05 +03:00
|
|
|
|
2018-08-27 07:37:54 +03:00
|
|
|
<activity android:name=".activities.AppLinkActivity">
|
2018-07-08 21:29:03 +03:00
|
|
|
<intent-filter>
|
2018-08-27 07:37:54 +03:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2018-07-08 21:29:03 +03:00
|
|
|
<data
|
|
|
|
android:host="@string/host"
|
2018-08-27 07:37:54 +03:00
|
|
|
android:scheme="@string/scheme"/>
|
2018-07-08 21:29:03 +03:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2018-09-14 07:46:30 +03:00
|
|
|
<service android:name=".utils.DirectoryInitialization"/>
|
2018-06-01 10:36:29 +03:00
|
|
|
<service android:name=".services.GameFileCacheService"/>
|
2018-07-08 21:29:03 +03:00
|
|
|
<service
|
|
|
|
android:name=".services.SyncChannelJobService"
|
|
|
|
android:exported="false"
|
2018-08-27 07:37:54 +03:00
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"/>
|
2018-07-08 21:29:03 +03:00
|
|
|
<service
|
|
|
|
android:name=".services.SyncProgramsJobService"
|
|
|
|
android:exported="false"
|
2018-08-27 07:37:54 +03:00
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"/>
|
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"
|
2018-08-27 07:37:54 +03:00
|
|
|
android:resource="@xml/nnf_provider_paths"/>
|
2018-01-03 10:40:23 +02:00
|
|
|
</provider>
|
|
|
|
|
2013-03-20 04:53:09 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|
2015-05-01 01:15:10 +03:00
|
|
|
|