8

I am integrating React Native with an existing iOS app. I have followed the guide on integrating with an existing app.

After reading some other posts on the subject, I have tried:

  • Setting the architecture in the Pod build to match the project settings in Xcode
  • Adding / moving the Pod build above the project build in the Scheme

Is there anything else I may need to check?

Adamski
  • 3,585
  • 5
  • 42
  • 78
  • Possible duplicate of [JUCE and React Native - linker error "ld: library not found for -lReact"](http://stackoverflow.com/questions/34792596/juce-and-react-native-linker-error-ld-library-not-found-for-lreact) – Adamski Feb 14 '16 at 08:52

2 Answers2

22

Make sure you open xcworkspace file generated by pod install instead of your old xcodeproj file and then select the right scheme

Navdeep Singh
  • 339
  • 1
  • 4
  • 1
    I managed to figure it out, via another question: http://stackoverflow.com/questions/34792596/juce-and-react-native-linker-error-ld-library-not-found-for-lreact – Adamski Feb 14 '16 at 08:50
4

In my case I had to change my deployment target to 11.0. I had changed my Pods level to 11.0 but not the xcode setting. Look in the Deployment Info section of your target General tab right next to the iPhone/IPad checkboxes.

Glenn
  • 1,996
  • 2
  • 24
  • 32