ColorRunner/android/AndroidManifest.xml

28 lines
1.0 KiB
XML
Raw Normal View History

2014-08-09 22:41:29 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2024-07-23 16:33:12 +02:00
xmlns:tools="http://schemas.android.com/tools">
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
<application
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@drawable/ic_launcher"
android:isGame="true"
android:appCategory="game"
android:label="@string/app_name"
tools:ignore="UnusedAttribute"
android:theme="@style/GdxTheme">
<activity
android:name="de.samdev.colorrunner.android.AndroidLauncher"
2014-08-09 22:41:29 +02:00
android:label="@string/app_name"
2024-07-23 16:33:12 +02:00
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
2014-08-09 22:41:29 +02:00
</manifest>