DEADSOFTWARE

9fcb35dbcaad2dc966972dfc54acbe93f58511a7
[cavedroid.git] / android / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="ru.deadsoftware.cavecraft" >
5 <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="20" />
7 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
9 <application
10 android:allowBackup="true"
11 android:icon="@drawable/ic_launcher"
12 android:label="@string/app_name"
13 android:theme="@style/GdxTheme" >
14 <activity
15 android:name="ru.deadsoftware.cavecraft.AndroidLauncher"
16 android:label="@string/app_name"
17 android:screenOrientation="landscape"
18 android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize">
19 <intent-filter>
20 <action android:name="android.intent.action.MAIN" />
21 <category android:name="android.intent.category.LAUNCHER" />
22 </intent-filter>
23 </activity>
24 </application>
26 </manifest>