2014-07-27 13:39:07 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-03 18:46:22 +00:00
|
|
|
package="com.shatteredpixel.shatteredpixeldungeon"
|
2015-06-12 05:52:06 +00:00
|
|
|
android:versionCode="45"
|
|
|
|
android:versionName="0.3.0d"
|
2014-07-27 13:39:07 +00:00
|
|
|
android:installLocation="auto">
|
|
|
|
|
2015-06-12 20:22:26 +00:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
2015-06-12 05:52:06 +00:00
|
|
|
|
|
|
|
<uses-sdk
|
2015-06-12 20:22:26 +00:00
|
|
|
android:minSdkVersion="8"
|
|
|
|
android:targetSdkVersion="21"/>
|
2014-07-27 13:39:07 +00:00
|
|
|
|
2015-06-12 05:52:06 +00:00
|
|
|
<uses-feature
|
2015-06-12 20:22:26 +00:00
|
|
|
android:glEsVersion="0x00020000"/>
|
2014-07-27 13:39:07 +00:00
|
|
|
|
2015-06-12 05:52:06 +00:00
|
|
|
<supports-screens
|
2015-06-12 20:22:26 +00:00
|
|
|
android:smallScreens="false"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:largeScreens="true"/>
|
|
|
|
<!--android:xlargeScreens="true"-->
|
2014-07-27 13:39:07 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
|
|
|
|
android:allowBackup="false">
|
|
|
|
<activity
|
|
|
|
android:label="@string/app_name"
|
2014-08-03 18:46:22 +00:00
|
|
|
android:name=".ShatteredPixelDungeon"
|
2014-07-27 13:39:07 +00:00
|
|
|
android:screenOrientation="portrait">
|
|
|
|
<intent-filter >
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|