Magic_Ling_Pixel_Dungeon/AndroidManifest.xml

39 lines
1.1 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"
2014-10-13 22:24:30 +00:00
android:versionCode="9"
android:versionName="0.2.1"
2014-07-27 13:39:07 +00:00
android:installLocation="auto">
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18"/>
<uses-feature
android:glEsVersion="0x00020000"/>
<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"/>
<!--android:xlargeScreens="true"-->
<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"
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>