Adamski
Adamski

Reputation: 3705

CocoaPods with React Native: `ld: library not found for -lReact`

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:

Is there anything else I may need to check?

Upvotes: 8

Views: 31956

Answers (2)

Glenn
Glenn

Reputation: 2206

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.

Upvotes: 4

Navdeep Singh
Navdeep Singh

Reputation: 339

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

Upvotes: 22

Related Questions