我正在尝试用podfile安装react-native-fbsdk的新版本,而不是链接库,这不起作用,但我在执行pod安装时收到以下错误消息。
我使用"react-native":"^0.59.5“,并尝试使"react-native-fbsdk":"^0.10.0”起作用。
Fetching podspec for `react-native-fbsdk` from `../node_modules/react-native-fbsdk`
[!] CocoaPods could not find compatible versions for pod "FBSDKCoreKit":
In Podfile:
FBSDKCoreKit
react-native-fbsdk (from `../node_modules/react-native-fbsdk`) was resolved to 0.10.0, which depends on
react-native-fbsdk/Core (= 0.10.0) was resolved to 0.10.0, which depends on
FBSDKCoreKit (~> 5.0.0)
Specs satisfying the `FBSDKCoreKit, FBSDKCoreKit (~> 5.0.0)` dependency were found, but they required a higher minimum deployment target.发布于 2019-07-16 00:32:53
请通过"pod spec cat FBSDKCoreKit | grep -A 2 platform“检查最低部署目标,然后添加最低部署目标。
https://stackoverflow.com/questions/57043791
复制相似问题