summaryrefslogtreecommitdiff
path: root/platform/android/export
diff options
context:
space:
mode:
authorTom Beckmann <tomjonabc@gmail.com>2023-01-11 17:26:42 +0100
committerTom Beckmann <tomjonabc@gmail.com>2023-01-11 17:26:42 +0100
commit0116d50fdd5ca79849f7c19dc131744b03276c8b (patch)
tree8af1be7cec8f50baf034411fefc1cd1ecb135ec6 /platform/android/export
parent2ac2db8de5289b4f097eac89485d95d8e5281a84 (diff)
Fix writing value for hand-tracking V2.0 to AndroidManifest.xml
Diffstat (limited to 'platform/android/export')
-rw-r--r--platform/android/export/export_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp
index 0bb7b57a35..a602cc7926 100644
--- a/platform/android/export/export_plugin.cpp
+++ b/platform/android/export/export_plugin.cpp
@@ -1025,7 +1025,7 @@ void EditorExportPlatformAndroid::_fix_manifest(const Ref<EditorExportPreset> &p
string_table.write[attr_value] = "com.oculus.handtracking.version";
}
- if (tname == "meta-data" && attrname == "name" && value == "xr_hand_tracking_version_value") {
+ if (tname == "meta-data" && attrname == "value" && value == "xr_hand_tracking_version_value") {
string_table.write[attr_value] = "V2.0";
}
}