capacitor-community / facebook-login

Facebook Login support
MIT License
98 stars 52 forks source link

conflict in dependencies for pod "FBSDKCoreKit" #120

Open Linknpay opened 1 year ago

Linknpay commented 1 year ago

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 ?

Linknpay commented 1 year ago

kind reminder

htrilasoft commented 1 year ago

@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".

j-d-carmichael commented 1 year ago

Thanks @htrilasoft running "pod install --repo-update" inside ios/App worked!