diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-03 06:51:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-03 06:51:32 +0200 |
commit | da622682f76201655f96c13c17c273e72d3a9678 (patch) | |
tree | 7975d48e2cd65cd999fe77de3757f702a1d1ea55 /platform/android/java | |
parent | 0f8d939866a417f657d61f241523e36b48a41410 (diff) | |
parent | dea414abc8ae9a11b5f8616969093c5eebe27c75 (diff) |
Merge pull request #30258 from m4gr3d/make_metadata_settable
Make the AndroidManifest meta-data name attribute settable.
Diffstat (limited to 'platform/android/java')
-rw-r--r-- | platform/android/java/AndroidManifest.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/java/AndroidManifest.xml b/platform/android/java/AndroidManifest.xml index a7e6db4059..3152ef12cd 100644 --- a/platform/android/java/AndroidManifest.xml +++ b/platform/android/java/AndroidManifest.xml @@ -25,8 +25,8 @@ <!--The following values are replaced when Godot exports, modifying them here has no effect. Do these changes in the--> <!--export preset. Adding new ones is fine.--> -<!-- Metadata for VR app detection on Oculus devices. This is modified by the exporter based on the selected xr mode. Changing this value here has no effect. --> - <meta-data android:name="com.samsung.android.vr.application.mode" android:value=""/> +<!-- 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="org.godotengine.godot.Godot" android:label="@string/godot_project_name_string" |