AndroidManifest.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. android:versionCode="1"
  5. android:versionName="1.0"
  6. android:installLocation="auto" >
  7. <supports-screens
  8. android:smallScreens="true"
  9. android:normalScreens="true"
  10. android:largeScreens="true"
  11. android:xlargeScreens="true" />
  12. <uses-feature
  13. android:glEsVersion="0x00030000"
  14. android:required="true" />
  15. <application
  16. android:label="@string/godot_project_name_string"
  17. android:allowBackup="false"
  18. android:icon="@mipmap/icon"
  19. android:appCategory="game"
  20. android:isGame="true"
  21. android:hasFragileUserData="false"
  22. android:requestLegacyExternalStorage="false"
  23. tools:ignore="GoogleAppIndexingWarning" >
  24. <profileable
  25. android:shell="true"
  26. android:enabled="true"
  27. tools:targetApi="29" />
  28. <activity
  29. android:name=".GodotApp"
  30. android:label="@string/godot_project_name_string"
  31. android:theme="@style/GodotAppSplashTheme"
  32. android:launchMode="singleInstancePerTask"
  33. android:excludeFromRecents="false"
  34. android:exported="true"
  35. android:screenOrientation="landscape"
  36. android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
  37. android:resizeableActivity="false"
  38. tools:ignore="UnusedAttribute" >
  39. <intent-filter>
  40. <action android:name="android.intent.action.MAIN" />
  41. <category android:name="android.intent.category.DEFAULT" />
  42. <category android:name="android.intent.category.LAUNCHER" />
  43. </intent-filter>
  44. </activity>
  45. </application>
  46. </manifest>