Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

duplicate symbols for architecture x86_64 ios React Native

I have recently updated to the newer version of Xcode and React Native and I'm having issues with duplicate symbols for my Xcode React Native build. I have tried to remove -ObjC from other Linker flags, changed No Common Blocks to No, and made sure no libraries were linked twice in 'Link Binary with Libraries'. None of those solutions suggested previously have helped; so, any other ideas would be appreciated.

like image 722
jaysig Avatar asked Jan 11 '18 19:01

jaysig


1 Answers

You probably have some third-party libraries that you have added with both pods and react-native link at the same time. Just check your projects Project/Libraries folder and Pods/Products folder to see if there are any duplicates. these two folders

like image 197
mcnk Avatar answered Oct 02 '22 10:10

mcnk