Browse Source

Merge pull request #45289 from naithar/fix/plugin_embedding

[iOS] Fix embedding of plugin libraries
Rémi Verschelde 4 years ago
parent
commit
7fc9d4c79b
1 changed files with 3 additions and 2 deletions
  1. 3 2
      platform/iphone/export/export.cpp

+ 3 - 2
platform/iphone/export/export.cpp

@@ -1359,8 +1359,9 @@ Error EditorExportPlatformIOS::_export_ios_plugins(const Ref<EditorExportPreset>
 		// 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);