Reputation: 12935
Error:
Could not connect to develpment server.
Ensure the following:
- Node server is running and available on the same network - run 'npm start' from react-native root
- Node server URL is correctly set in AppDelegate
URL: http://127.0.0.1:8081/index.ios.bundle?platform=ios&dev=true
I definitely am running npm start. Why isn't this running?
Now I am seeing this Error:
In file included from /Users/*******/f8app/node_modules/react-native-fbsdk/ios/RCTFBSDK/core/RCTFBSDKAccessToken.m:19:
/Users/*********/f8app/node_modules/react-native-fbsdk/ios/RCTFBSDK/core/RCTFBSDKAccessToken.h:21:9: fatal error:
'FBSDKCoreKit/FBSDKCoreKit.h' file not found
#import <FBSDKCoreKit/FBSDKCoreKit.h>
Upvotes: 1
Views: 1896
Reputation: 1139
If the project build doesn't succeed, you may want to try this. You should first update your existing FBSDK (if any)
Upvotes: 0
Reputation: 133
Does the project build succeed in Xcode?
Did you double-check these steps mentioned by facebook:
I myself had some troubles with the final step, but after retrying in a fresh project all worked fine
Example image from web showing the correct search path
Upvotes: 1