You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi 👋
I was trying to use @rebox on Xcode 12.4 with additional dependency react-native-svg, but it was resulting in this error:
The following build commands failed:
Ld /Users/user.name/Library/Developer/Xcode/DerivedData/rebox-byjvpkhoayqrwpfsuipmqmyqgpzv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNSVG.build/Objects-normal/x86_64/Binary/RNSVG normal x86_64
(1 failure)
After some research, I found that this specific fix seems to work: software-mansion/react-native-svg#1510
(replacing 'React' with 'React-Core' inside ./node_modules/react-native-svg/RNSVG.podspec)
So far I'm using it by adding a simple postinstall script in my project:
My question is: Do you think it makes sense and if it's possible to have a fix inside rebox?
I've seen more people having similar issues with different dependencies,
but I didn't manage to get their proposed solution to work rebox: facebook/react-native#29633
The text was updated successfully, but these errors were encountered:
react-native-svg dependency is not a built-in part of rebox anymore, therefore we can't monkey-patch every single 3rd-party dependency because it's up to a user-land now.
Hi 👋
I was trying to use @rebox on Xcode 12.4 with additional dependency
react-native-svg
, but it was resulting in this error:After some research, I found that this specific fix seems to work:
software-mansion/react-native-svg#1510
(replacing 'React' with 'React-Core' inside
./node_modules/react-native-svg/RNSVG.podspec
)So far I'm using it by adding a simple postinstall script in my project:
My question is: Do you think it makes sense and if it's possible to have a fix inside rebox?
I've seen more people having similar issues with different dependencies,
but I didn't manage to get their proposed solution to work rebox: facebook/react-native#29633
The text was updated successfully, but these errors were encountered: