Magic_Ling_Pixel_Dungeon/AndroidManifest.xml

40 lines
1.2 KiB
XML
Raw Normal View History

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"
package="com.shatteredpixel.shatteredpixeldungeon"
android:versionCode="108"
2016-06-21 05:18:42 +00:00
android:versionName="0.4.0"
2014-07-27 13:39:07 +00:00
android:installLocation="auto">
<uses-permission android:name="android.permission.VIBRATE"/>
2015-06-12 05:52:06 +00:00
<uses-sdk
android:minSdkVersion="8"
2015-08-23 00:14:29 +00:00
android:targetSdkVersion="23"/>
2014-07-27 13:39:07 +00:00
2015-06-12 05:52:06 +00:00
<uses-feature
android:glEsVersion="0x00020000"/>
2014-07-27 13:39:07 +00:00
2015-06-12 05:52:06 +00:00
<supports-screens
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"
android:name=".ShatteredPixelDungeon"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorPortrait">
2014-07-27 13:39:07 +00:00
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>