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
|
|
|
|
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" />
|
2013-08-20 19:39:00 -04:00
|
|
|
|
|
|
|
<application
|
2013-09-23 00:23:10 -05:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2014-11-14 13:39:15 -05:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:supportsRtl="true">
|
2015-05-06 20:12:58 -04:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.GameGridActivity"
|
|
|
|
android:label="Dolphin New UI"
|
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
|
|
|
|
android:name=".activities.AddDirectoryActivity"
|
|
|
|
android:theme="@style/DolphinWii"
|
|
|
|
android:label="@string/add_directory_title"/>
|
|
|
|
|
2013-03-19 21:53:09 -05:00
|
|
|
<activity
|
2014-07-06 20:26:52 -04:00
|
|
|
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
|
2013-03-19 21:53:09 -05:00
|
|
|
android:label="@string/app_name"
|
2014-07-06 20:26:52 -04:00
|
|
|
android:theme="@android:style/Theme.Holo.Light" >
|
|
|
|
|
2015-05-06 20:12:58 -04:00
|
|
|
<!-- Having a second activity with this intent-filter means we have two choices from the home screen. -->
|
2013-03-19 21:53:09 -05:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2013-08-29 19:07:57 -04:00
|
|
|
|
2014-04-27 17:13:09 -04:00
|
|
|
<activity
|
|
|
|
android:name="org.dolphinemu.dolphinemu.about.AboutActivity"
|
|
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
|
|
|
|
2013-10-25 21:05:42 -04:00
|
|
|
<activity
|
|
|
|
android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
|
|
|
|
android:screenOrientation="landscape" />
|
2013-08-29 19:07:57 -04:00
|
|
|
|
2013-10-25 21:05:42 -04:00
|
|
|
<activity
|
2013-11-25 14:23:28 -05:00
|
|
|
android:name="org.dolphinemu.dolphinemu.settings.input.overlayconfig.OverlayConfigActivity"
|
2013-10-25 21:05:42 -04:00
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
|
2013-10-25 16:52:46 -04:00
|
|
|
|
2013-06-22 22:54:28 -05:00
|
|
|
<activity
|
2013-08-20 19:39:00 -04:00
|
|
|
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
|
2014-04-27 17:13:09 -04:00
|
|
|
android:label="@string/settings"
|
|
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
2013-09-10 09:29:05 -04:00
|
|
|
|
2014-07-06 20:26:52 -04:00
|
|
|
<service android:name=".AssetCopyService"/>
|
|
|
|
|
2013-03-19 21:53:09 -05:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|
2015-04-30 18:15:10 -04:00
|
|
|
|