You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
CocoaPods could not find compatible versions for pod "FBSDKCoreKit":
In Podfile:
CapacitorCommunityFacebookLogin (from ../../node_modules/@capacitor-community/facebook-login) was resolved to 4.0.0, which depends on
FBSDKCoreKit (= 14.1.0)
CapacitorPluginFacebookAnalytics (from `../../node_modules/capacitor-plugin-facebook-analytics`) was resolved to 0.0.10, which depends on
FBSDKCoreKit (= 15.1.0)
Additional context
Could you update your dependency FBSDKCoreKit to 15.1.0 please ?
The text was updated successfully, but these errors were encountered:
@Linknpay I too faced the same issue, turns out, hadn't added FBSDKCoreKit in the Podfile
target 'app' do
capacitor_pods
...
pod 'FBSDKCoreKit' <---- Add FBSDKCoreKit here
end
Then if the automatic pod install doesn't update the dependencies. Opening a terminal at the location of the Podfile and run "pod install --repo-update".
Describe the bug
CocoaPods could not find compatible versions for pod "FBSDKCoreKit":
In Podfile:
CapacitorCommunityFacebookLogin (from
../../node_modules/@capacitor-community/facebook-login
) was resolved to 4.0.0, which depends onFBSDKCoreKit (= 14.1.0)
Additional context
Could you update your dependency FBSDKCoreKit to 15.1.0 please ?
The text was updated successfully, but these errors were encountered: