2012-11-01 15:19:01 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.ppsspp.ppsspp"
|
2013-12-12 21:44:14 +00:00
|
|
|
android:versionCode="97"
|
2013-12-11 20:54:15 +00:00
|
|
|
android:versionName="0.9.6"
|
2013-02-16 09:01:32 +00:00
|
|
|
android:installLocation="auto" >
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-12-02 11:34:26 +00:00
|
|
|
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"/>
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
<uses-feature android:glEsVersion="0x00020000"></uses-feature>
|
2013-06-16 21:48:24 +00:00
|
|
|
<uses-feature android:name="android.hardware.screen.landscape" />
|
2014-01-03 14:21:55 +00:00
|
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
2013-06-16 21:48:24 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="archos.permission.FULLSCREEN.FULL" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
|
|
|
<supports-screens
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:xlargeScreens="true"/>
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/ic_launcher"
|
2013-06-19 12:28:22 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:allowBackup="true">
|
2012-11-01 15:19:01 +00:00
|
|
|
<activity
|
|
|
|
android:name=".PpssppActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
2013-07-17 20:50:27 +00:00
|
|
|
android:configChanges="orientation|locale|keyboard|keyboardHidden|navigation|fontScale|uiMode"
|
2013-10-10 09:14:52 +00:00
|
|
|
android:screenOrientation="landscape"
|
2013-10-09 13:32:37 +00:00
|
|
|
>
|
2012-11-01 15:19:01 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
2013-02-07 19:53:25 +00:00
|
|
|
</manifest>
|
2013-06-01 19:53:17 +00:00
|
|
|
|