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"/>
|
2019-10-28 16:40:14 +01:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.sensor.accelerometer"
|
|
|
|
android:required="false"/>
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.sensor.gyroscope"
|
|
|
|
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"/>
|
2018-10-25 16:58:05 -04:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.VIBRATE"
|
|
|
|
android:required="false"/>
|
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"
|
2020-07-12 12:02:37 +02:00
|
|
|
android:requestLegacyExternalStorage="true"
|
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"
|
2018-08-10 21:13:31 -07:00
|
|
|
android:theme="@style/DolphinBase">
|
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"
|
2018-08-10 21:13:31 -07:00
|
|
|
android:theme="@style/DolphinTvBase">
|
2015-07-14 22:35:52 -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.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"
|
2019-08-04 01:05:44 -03:00
|
|
|
android:configChanges="orientation|screenSize"
|
2018-08-10 21:13:31 -07:00
|
|
|
android:theme="@style/DolphinSettingsBase"
|
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"
|
2020-07-28 22:21:57 +02:00
|
|
|
android:theme="@style/DolphinEmulationBase"
|
|
|
|
android:preferMinimalPostProcessing="true"/>
|
2015-05-20 07:07:17 -04:00
|
|
|
|
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-08-10 21:15:05 -07:00
|
|
|
|
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>
|
|
|
|
|
2020-06-25 00:02:02 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ConvertActivity"
|
|
|
|
android:theme="@style/DolphinBase" />
|
|
|
|
|
2018-09-14 00:46:30 -04:00
|
|
|
<service android:name=".utils.DirectoryInitialization"/>
|
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
|
2019-11-15 01:51:54 -05:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2018-01-03 09:40:23 +01:00
|
|
|
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
|
|
|
|