AndroidManifest.xml 1.1 KB

123456789101112131415161718192021222324252627
  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">
  4. <uses-feature android:glEsVersion="0x00020000" android:required="true"/>
  5. <application
  6. android:allowBackup="true"
  7. android:fullBackupContent="true"
  8. android:icon="@drawable/ic_launcher"
  9. android:isGame="true"
  10. android:appCategory="game"
  11. android:label="@string/app_name"
  12. tools:ignore="UnusedAttribute"
  13. android:theme="@style/GdxTheme">
  14. <activity
  15. android:name="xyz.prismix.android.AndroidLauncher"
  16. android:label="@string/app_name"
  17. android:screenOrientation="landscape"
  18. android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout"
  19. android:exported="true">
  20. <intent-filter>
  21. <action android:name="android.intent.action.MAIN"/>
  22. <category android:name="android.intent.category.LAUNCHER"/>
  23. </intent-filter>
  24. </activity>
  25. </application>
  26. <uses-permission android:name="android.permission.INTERNET" />
  27. </manifest>