[Huge update]
Someone sent me this and it is much easier to read in order to install fbsdk with React Native: https://developers.facebook.com/docs/react-native/getting-started-ios
However, the problem was still the same:
Use of undeclared identifier 'UIUserInterfaceIdiomTV'
I guess this is an error coming from the content pulled by CocoaPods, because I was able to make the sample example work by simply deleting the same UIUserInterfaceIdiomTV case (it used to be in a switch).
However, by following every step from the guide and eventually deleting the UIUserInterfaceIdiomTV, I am faced with new compilation problems in my own project:
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_FBSDKAppEvents", referenced from:
objc-class-ref in AppDelegate.o
"_OBJC_CLASS_$_FBSDKApplicationDelegate", referenced from:
objc-class-ref in AppDelegate.o
"_OBJC_CLASS_$_RCTRootView", referenced from:
objc-class-ref in AppDelegate.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
If anyone can help...
Thanks for your help!
I finally made the fbsdk to work (24/04/2016). To sum up the different steps in case you meet the same problem:
The 'YourApp [Debug]' target overrides the 'OTHER_LDFLAGS' build setting...
warning after the command pod install
, the $(inherited)
is to be added in the main project build settings and not in the Pods
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb{your-app-id}</string>
</array>
</dict>
</array>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbapi</string>
<string>fb-messenger-api</string>
<string>fbauth2</string>
<string>fbshareextension</string>
</array>
<key>FacebookAppID</key>
<string>{your-app-id}</string>
<key>FacebookDisplayName</key>
<string>{your-app-name}</string>
Do not forget to replace {your-app-id} by... your app id, and {your-app-name} by your app name. Good luck to everyone!