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-08-29 23:52:31 +02:00
|
|
|
android:versionCode="11"
|
|
|
|
android:versionName="0.11"
|
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
|
|
|
|
android:minSdkVersion="14"
|
2013-09-10 15:29:05 +02:00
|
|
|
android:targetSdkVersion="18" />
|
|
|
|
|
|
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
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" />
|
2013-08-24 13:49:50 +02: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"
|
|
|
|
android:allowBackup="true">
|
2013-03-20 03:53:09 +01:00
|
|
|
<activity
|
2013-08-21 01:39:00 +02:00
|
|
|
android:name="org.dolphinemu.dolphinemu.DolphinEmulator"
|
|
|
|
android:configChanges="locale|keyboard|keyboardHidden|navigation|fontScale|uiMode"
|
2013-03-20 03:53:09 +01:00
|
|
|
android:label="@string/app_name"
|
2013-07-16 16:08:41 +02:00
|
|
|
android:screenOrientation="landscape"
|
2013-08-21 01:39:00 +02:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
|
2013-03-20 03:53:09 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2013-08-21 01:39:00 +02:00
|
|
|
|
2013-03-20 03:53:09 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2013-08-30 01:07:57 +02:00
|
|
|
|
2013-08-29 23:20:46 +02:00
|
|
|
<activity android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity" />
|
2013-08-30 01:07:57 +02:00
|
|
|
|
2013-09-23 13:14:51 +02:00
|
|
|
<activity android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
|
2013-08-30 01:07:57 +02:00
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
|
2013-06-23 05:54:28 +02:00
|
|
|
<activity
|
2013-08-21 01:39:00 +02:00
|
|
|
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
|
2013-09-10 15:29:05 +02:00
|
|
|
android:label="@string/settings" />
|
|
|
|
|
2013-03-20 03:53:09 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|