mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-16 19:19:13 +01:00
64 lines
2.4 KiB
XML
64 lines
2.4 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="Dolphin New UI"
|
|
android:theme="@style/DolphinWii">
|
|
|
|
<!-- 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="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="org.dolphinemu.dolphinemu.about.AboutActivity"
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
|
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.settings.input.overlayconfig.OverlayConfigActivity"
|
|
android:screenOrientation="landscape"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
|
|
|
|
<activity
|
|
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
|
|
android:label="@string/settings"
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
|
|
|
<service android:name=".AssetCopyService"/>
|
|
|
|
</application>
|
|
|
|
</manifest>
|
|
|