DEADSOFTWARE

Update gradle
[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 <activity
11 android:name="ru.deadsoftware.cavedroid.AndroidLauncher"
12 android:label="@string/app_name"
13 android:screenOrientation="landscape"
14 android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize">
15 <intent-filter>
16 <action android:name="android.intent.action.MAIN" />
17 <category android:name="android.intent.category.LAUNCHER" />
18 </intent-filter>
19 </activity>
20 </application>
22 </manifest>