diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-04-27 09:44:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 09:44:19 +0200 |
commit | 36cb471e11a7531c79710fb0c54b64c9f41623a0 (patch) | |
tree | 6844950a8cf91355e84bda316bdecb2b2b5ab80e /platform/android/java | |
parent | 83cc6bcf55cf6605401291fa3a74b5bd84fd9db6 (diff) | |
parent | abb21844d86918d7b513277e84749130b9ce11e3 (diff) | |
download | redot-engine-36cb471e11a7531c79710fb0c54b64c9f41623a0.tar.gz |
Merge pull request #48219 from m4gr3d/move_ovr_manifest_configs_to_plugin
Remove deprecated xr features properties
Diffstat (limited to 'platform/android/java')
-rw-r--r-- | platform/android/java/app/AndroidManifest.xml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/platform/android/java/app/AndroidManifest.xml b/platform/android/java/app/AndroidManifest.xml index 948fa8c00b..15feea15a4 100644 --- a/platform/android/java/app/AndroidManifest.xml +++ b/platform/android/java/app/AndroidManifest.xml @@ -30,11 +30,6 @@ <!-- The following metadata values are replaced when Godot exports, modifying them here has no effect. --> <!-- Do these changes in the export preset. Adding new ones is fine. --> - <!-- XR mode metadata. This is modified by the exporter based on the selected xr mode. DO NOT CHANGE the values here. --> - <meta-data - android:name="xr_mode_metadata_name" - android:value="xr_mode_metadata_value" /> - <activity android:name=".GodotApp" android:label="@string/godot_project_name_string" @@ -45,8 +40,8 @@ android:resizeableActivity="false" tools:ignore="UnusedAttribute" > - <!-- Focus awareness metadata is updated at export time if the user enables it in the 'Xr Features' section. --> - <meta-data android:name="com.oculus.vr.focusaware" android:value="false" /> + <!-- Focus awareness metadata is removed at export time if the xr mode is not VR. --> + <meta-data android:name="com.oculus.vr.focusaware" android:value="true" /> <intent-filter> <action android:name="android.intent.action.MAIN" /> |