mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-29 09:15:33 +01:00
87 lines
3.1 KiB
XML
87 lines
3.1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.dolphinemu.dolphinemu">
|
|
|
|
<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:icon="@drawable/ic_launcher"
|
|
android:allowBackup="true"
|
|
android:supportsRtl="true">
|
|
|
|
<activity
|
|
android:name=".activities.GameGridActivity"
|
|
android:label="@string/title_new_ui"
|
|
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=".activities.AddDirectoryActivity"
|
|
android:theme="@style/DolphinGamecube"
|
|
android:label="@string/add_directory_title"/>
|
|
|
|
<activity
|
|
android:name=".activities.SettingsActivity"
|
|
android:theme="@style/DolphinSettingsGamecube"
|
|
android:label="@string/grid_menu_settings"/>
|
|
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@android:style/Theme.Holo.Light" >
|
|
|
|
<!-- Having a second activity with this intent-filter means we have two choices from the home screen. -->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activities.EmulationActivity"
|
|
android:theme="@style/DolphinEmulationGamecube"/>
|
|
|
|
<activity
|
|
android:name=".about.AboutActivity"
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
|
|
|
<activity
|
|
android:name=".emulation.EmulationActivity"
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
android:name=".settings.input.overlayconfig.OverlayConfigActivity"
|
|
android:screenOrientation="landscape"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
|
|
|
|
<activity
|
|
android:name=".settings.PrefsActivity"
|
|
android:label="@string/settings"
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
|
|
|
<service android:name=".services.AssetCopyService"/>
|
|
|
|
<service android:name=".services.SettingsSaveService"/>
|
|
|
|
<provider
|
|
android:name=".model.GameProvider"
|
|
android:authorities="${applicationId}.provider"
|
|
android:enabled="true"
|
|
android:exported="false">
|
|
</provider>
|
|
|
|
</application>
|
|
|
|
</manifest>
|
|
|