From 52919ff352dfd6812894a729b5208e734ce41615 Mon Sep 17 00:00:00 2001 From: Tom Beckmann Date: Wed, 11 Jan 2023 17:26:42 +0100 Subject: [PATCH] Fix writing value for hand-tracking V2.0 to AndroidManifest.xml (cherry picked from commit 0116d50fdd5ca79849f7c19dc131744b03276c8b) --- platform/android/export/export_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index 8c1f8daa94e..5d56b349a92 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -1013,7 +1013,7 @@ void EditorExportPlatformAndroid::_fix_manifest(const Ref &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"; } }