2
0

AndroidManifest.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. package="com.godot.game"
  5. android:versionCode="1"
  6. android:versionName="1.0"
  7. android:installLocation="auto" >
  8. <supports-screens
  9. android:smallScreens="true"
  10. android:normalScreens="true"
  11. android:largeScreens="true"
  12. android:xlargeScreens="true" />
  13. <uses-feature
  14. android:glEsVersion="0x00030000"
  15. android:required="true" />
  16. <application
  17. android:label="@string/godot_project_name_string"
  18. android:allowBackup="false"
  19. android:icon="@mipmap/icon"
  20. android:appCategory="game"
  21. android:isGame="true"
  22. android:hasFragileUserData="false"
  23. android:requestLegacyExternalStorage="false"
  24. tools:ignore="GoogleAppIndexingWarning" >
  25. <!-- Records the version of the Godot editor used for building -->
  26. <meta-data
  27. android:name="org.godotengine.editor.version"
  28. android:value="${godotEditorVersion}" />
  29. <activity
  30. android:name=".GodotApp"
  31. android:label="@string/godot_project_name_string"
  32. android:theme="@style/GodotAppSplashTheme"
  33. android:launchMode="singleInstancePerTask"
  34. android:excludeFromRecents="false"
  35. android:exported="true"
  36. android:screenOrientation="landscape"
  37. android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
  38. android:resizeableActivity="false"
  39. tools:ignore="UnusedAttribute" >
  40. <intent-filter>
  41. <action android:name="android.intent.action.MAIN" />
  42. <category android:name="android.intent.category.LAUNCHER" />
  43. </intent-filter>
  44. </activity>
  45. </application>
  46. </manifest>