Yes
Yes
Environment:
OS: macOS High Sierra 10.13.2
Node: 8.9.1
Yarn: 1.3.2
npm: 5.6.0
Watchman: 4.9.0
Xcode: Xcode 9.2 Build version 9C40b
Android Studio: 3.0 AI-171.4408382
Packages: (wanted => installed)
react: 16.0.0-alpha.12 => 16.0.0-alpha.12
react-native: 0.48.3 => 0.48.3
Target Platform: iOS (10.3)
(Write your steps here:)
The application normally works with libRCTFBSDK.a
The application crashes on launch



https://github.com/oxy88/fbsdk
(Paste the link to an example project and exact instructions to reproduce the issue.)
It works with Android but never works with IOS.
I have tried many versions but nothing worked.
Maybe this is the problem of react-native-fbsdk but there aren't Issue on react-native-fbsdk.
Try running the project in Xcode and viewing the application output from Xcode. When I ran your project the following error appeared:
Terminating app due to uncaught exception 'InvalidOperationException', reason: 'fb-messenger-share-api is missing from your Info.plist under LSApplicationQueriesSchemes and is required for iOS 9.0'
So you need to add fb-messenger-share-api to the LSApplicationQueriesSchemes array in your Info.plist file. I tested that and your app was no longer crashing for me.
@adrianfalleiro Wow! It works! Thank you! Next time I'll check by Xcode!
@adrianfalleiro its worked Thanks
Most helpful comment
Try running the project in Xcode and viewing the application output from Xcode. When I ran your project the following error appeared:
So you need to add
fb-messenger-share-apito theLSApplicationQueriesSchemesarray in yourInfo.plistfile. I tested that and your app was no longer crashing for me.