facebookarchive / react-native-fbsdk

A React Native wrapper around the Facebook SDKs for Android and iOS. Provides access to Facebook login, sharing, graph requests, app events etc.
https://developers.facebook.com/docs/react-native
Other
2.99k stars 909 forks source link

Fix Xcode 12 compatibility #819

Closed afestein closed 3 years ago

afestein commented 3 years ago

Compilation fails on Xcode 12 with Undefined symbols for architecture errors, due to the React dependency in the podspec.

See the react-native issue here - https://github.com/facebook/react-native/issues/29633#issuecomment-694187116

afestein commented 3 years ago

On closer inspection, it seems the only fix needed is to generate the Swift Bridging as described in this issue: https://github.com/facebook/react-native-fbsdk/issues/794#issuecomment-695217977

After implementing that suggestion, I can compile the app fine on Xcode 12.