diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-12 14:31:41 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-12 14:31:41 +0100 |
commit | 94cf65a73afd7a0a0c02d3ede72a81104b60a417 (patch) | |
tree | 6c26a4b2370a5041dab4188fd64ae45970aeab59 /platform/android/export/export_plugin.cpp | |
parent | a8a9892ad664410502f56a564923fd7cc04474a6 (diff) | |
parent | 0116d50fdd5ca79849f7c19dc131744b03276c8b (diff) |
Merge pull request #71231 from tom95/fix-android-manifest-hand-tracking-v2
Fix writing value for hand-tracking V2.0 to AndroidManifest.xml
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 2 |
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"; } } |