I\'m getting this linker error using CocoaPods with React Native:
ld: library not found for -lReact
I have followed the guide at https://facebook.githu
Go to your Project -> Your Target -> Build Phases -> Link Binary With Libraries and you might see some red entries there referring to the React library files here. Just remove those red entries and you should be good to go.
If there are no red entries, then just check that the list of libs in Link Binary With Libraries list has no items which you removed from React project using 'npm uninstall lib_name' command.