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
I looked for differences between the Introjucer generated project and the Xcode generated one.
One significant difference was the CONFIGURATION_BUILD_DIR
or "Per-configuration Build Products Path"
I copied over the setting from the Xcode generated project
$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
This allowed the linking to complete and gave a successful build :)