Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch @baronha/react-native-multiple-image-picker@2.2.5 for the project I'm working on.
I had issues getting the package to build when using "react-native-nitro-modules": "0.35.2", I was getting a error during iOS build:
/node_modules/@baronha/react-native-multiple-image-picker/nitrogen/generated/ios/MultipleImagePicker-Swift-Cxx-Umbrella.hpp:89:10: 'NitroModules/AnyMapHolder.hpp' file not found
Here is the diff that solved my problem:
diff --git a/node_modules/@baronha/react-native-multiple-image-picker/nitrogen/generated/ios/MultipleImagePicker-Swift-Cxx-Umbrella.hpp b/node_modules/@baronha/react-native-multiple-image-picker/nitrogen/generated/ios/MultipleImagePicker-Swift-Cxx-Umbrella.hpp
index 130d74f..6e57f04 100644
--- a/node_modules/@baronha/react-native-multiple-image-picker/nitrogen/generated/ios/MultipleImagePicker-Swift-Cxx-Umbrella.hpp
+++ b/node_modules/@baronha/react-native-multiple-image-picker/nitrogen/generated/ios/MultipleImagePicker-Swift-Cxx-Umbrella.hpp
@@ -86,7 +86,7 @@ namespace margelo::nitro::multipleimagepicker { enum class Theme; }
// Common C++ types used in Swift
#include <NitroModules/ArrayBufferHolder.hpp>
-#include <NitroModules/AnyMapHolder.hpp>
+#include <NitroModules/AnyMapUtils.hpp>
#include <NitroModules/RuntimeError.hpp>
// Forward declarations of Swift defined types
This issue body was partially generated by patch-package.
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
@baronha/react-native-multiple-image-picker@2.2.5for the project I'm working on.I had issues getting the package to build when using "react-native-nitro-modules": "0.35.2", I was getting a error during iOS build:
/node_modules/@baronha/react-native-multiple-image-picker/nitrogen/generated/ios/MultipleImagePicker-Swift-Cxx-Umbrella.hpp:89:10: 'NitroModules/AnyMapHolder.hpp' file not foundHere is the diff that solved my problem:
This issue body was partially generated by patch-package.