DEADSOFTWARE

Update version
[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 xmlns:tools="http://schemas.android.com/tools" package="ru.deadsoftware.cavedroid">
5 <application
6 android:allowBackup="true"
7 android:icon="@drawable/ic_launcher"
8 android:label="@string/app_name"
9 android:theme="@style/GdxTheme" tools:ignore="GoogleAppIndexingWarning"
10 android:fullBackupContent="@xml/backup_descriptor">
11 <activity
12 android:name="ru.deadsoftware.cavedroid.AndroidLauncher"
13 android:label="@string/app_name"
14 android:screenOrientation="sensorLandscape"
15 android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize"
16 tools:ignore="LockedOrientationActivity">
17 <intent-filter>
18 <action android:name="android.intent.action.MAIN" />
19 <category android:name="android.intent.category.LAUNCHER" />
20 </intent-filter>
21 </activity>
22 </application>
24 </manifest>