AndroidManifest.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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="0x00020000"
  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:isGame="true"
  21. android:hasFragileUserData="false"
  22. android:requestLegacyExternalStorage="false"
  23. tools:ignore="GoogleAppIndexingWarning" >
  24. <!-- Records the version of the Godot editor used for building -->
  25. <meta-data
  26. android:name="org.godotengine.editor.version"
  27. android:value="${godotEditorVersion}" />
  28. <!-- The following metadata values are replaced when Godot exports, modifying them here has no effect. -->
  29. <!-- Do these changes in the export preset. Adding new ones is fine. -->
  30. <!-- XR hand tracking metadata -->
  31. <!-- This is modified by the exporter based on the selected xr mode. DO NOT CHANGE the values here. -->
  32. <!-- Removed at export time if the xr mode is not VR or hand tracking is disabled. -->
  33. <meta-data
  34. android:name="xr_hand_tracking_metadata_name"
  35. android:value="xr_hand_tracking_metadata_value"/>
  36. <!-- XR hand tracking version -->
  37. <!-- This is modified by the exporter based on the selected xr mode. DO NOT CHANGE the values here. -->
  38. <!-- Removed at export time if the xr mode is not VR or hand tracking is disabled. -->
  39. <meta-data
  40. android:name="xr_hand_tracking_version_name"
  41. android:value="xr_hand_tracking_version_value"/>
  42. <!-- Supported Meta devices -->
  43. <!-- This is removed by the exporter if the xr mode is not VR. -->
  44. <meta-data
  45. android:name="com.oculus.supportedDevices"
  46. android:value="all" />
  47. <activity
  48. android:name=".GodotApp"
  49. android:label="@string/godot_project_name_string"
  50. android:theme="@style/GodotAppSplashTheme"
  51. android:launchMode="singleTask"
  52. android:excludeFromRecents="false"
  53. android:exported="true"
  54. android:screenOrientation="landscape"
  55. android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
  56. android:resizeableActivity="false"
  57. tools:ignore="UnusedAttribute" >
  58. <!-- Focus awareness metadata is removed at export time if the xr mode is not VR. -->
  59. <meta-data android:name="com.oculus.vr.focusaware" android:value="true" />
  60. <intent-filter>
  61. <action android:name="android.intent.action.MAIN" />
  62. <category android:name="android.intent.category.LAUNCHER" />
  63. <!-- Enable access to OpenXR on Oculus mobile devices, no-op on other Android
  64. platforms. -->
  65. <category android:name="com.oculus.intent.category.VR" />
  66. </intent-filter>
  67. </activity>
  68. </application>
  69. </manifest>