From 6d67827f4e254a5daccae5ec5851be9aaf494b19 Mon Sep 17 00:00:00 2001 From: Sergey Minakov Date: Mon, 18 Jan 2021 19:22:06 +0300 Subject: [iOS] Fix embedding of plugin libraries --- platform/iphone/export/export.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'platform/iphone/export/export.cpp') diff --git a/platform/iphone/export/export.cpp b/platform/iphone/export/export.cpp index 9dc0825809..d0c0ef7a4b 100644 --- a/platform/iphone/export/export.cpp +++ b/platform/iphone/export/export.cpp @@ -1359,8 +1359,9 @@ Error EditorExportPlatformIOS::_export_ios_plugins(const Ref // Export plugin binary. String plugin_main_binary = get_plugin_main_binary(plugin, p_debug); String plugin_binary_result_file = plugin.binary.get_file(); - - err = _copy_asset(dest_dir, plugin_main_binary, &plugin_binary_result_file, true, true, r_exported_assets); + // We shouldn't embed .xcframework that contains static libraries. + // Static libraries are not embedded anyway. + err = _copy_asset(dest_dir, plugin_main_binary, &plugin_binary_result_file, true, false, r_exported_assets); ERR_FAIL_COND_V(err, err); -- cgit v1.2.3