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