2013-03-20 03:53:09 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.dolphinemu.dolphinemu"
|
2013-11-30 21:28:48 +01:00
|
|
|
android:versionCode="13"
|
|
|
|
android:versionName="0.13"
|
2013-08-21 21:35:31 +02:00
|
|
|
android:installLocation="auto">
|
2013-03-20 03:53:09 +01:00
|
|
|
|
2013-08-21 01:39:00 +02:00
|
|
|
<uses-sdk
|
2014-12-20 22:43:51 +01:00
|
|
|
android:minSdkVersion="18"
|
2014-11-14 19:25:30 +01:00
|
|
|
android:targetSdkVersion="21" />
|
2013-09-10 15:29:05 +02:00
|
|
|
|
2014-12-20 22:43:51 +01:00
|
|
|
<uses-feature android:glEsVersion="0x00030000" />
|
2013-08-21 01:39:00 +02:00
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.screen.landscape" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2015-01-24 06:15:56 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2013-08-21 01:39:00 +02:00
|
|
|
|
|
|
|
<application
|
2013-09-23 07:23:10 +02:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2013-10-01 15:31:02 +02:00
|
|
|
android:label="@string/app_name"
|
2014-11-14 19:39:15 +01:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:supportsRtl="true">
|
2013-03-20 03:53:09 +01:00
|
|
|
<activity
|
2014-07-07 02:26:52 +02:00
|
|
|
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
|
2013-03-20 03:53:09 +01:00
|
|
|
android:label="@string/app_name"
|
2014-07-07 02:26:52 +02:00
|
|
|
android:theme="@android:style/Theme.Holo.Light" >
|
|
|
|
|
|
|
|
<!-- This intentfilter marks this Activity as the one that gets launched from Home screen.-->
|
2013-03-20 03:53:09 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2013-08-30 01:07:57 +02:00
|
|
|
|
2014-04-27 23:13:09 +02:00
|
|
|
<activity
|
|
|
|
android:name="org.dolphinemu.dolphinemu.about.AboutActivity"
|
|
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
|
|
|
|
2013-10-26 03:05:42 +02:00
|
|
|
<activity
|
|
|
|
android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
|
|
|
|
android:screenOrientation="landscape" />
|
2013-08-30 01:07:57 +02:00
|
|
|
|
2013-10-26 03:05:42 +02:00
|
|
|
<activity
|
2013-11-25 20:23:28 +01:00
|
|
|
android:name="org.dolphinemu.dolphinemu.settings.input.overlayconfig.OverlayConfigActivity"
|
2013-10-26 03:05:42 +02:00
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
|
2013-10-25 22:52:46 +02:00
|
|
|
|
2013-06-23 05:54:28 +02:00
|
|
|
<activity
|
2013-08-21 01:39:00 +02:00
|
|
|
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
|
2014-04-27 23:13:09 +02:00
|
|
|
android:label="@string/settings"
|
|
|
|
android:theme="@android:style/Theme.Holo.Light" />
|
2013-09-10 15:29:05 +02:00
|
|
|
|
2014-07-07 02:26:52 +02:00
|
|
|
<service android:name=".AssetCopyService"/>
|
|
|
|
|
2013-03-20 03:53:09 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|