I'm currently stuck on this part when I try to run pod install
in my flutter project.This is what I have in my pubspec.yaml
flutter_facebook_auth: ^6.1.1flutter_login_facebook: ^1.9.0
This is what I also have in my Podfile
platform :ios, '12.0'pod 'FBSDKCoreKit'pod 'FBSDKLoginKit'
I deleted my Podfile.lock
and run pod repo update
before running pod install
. I tried to use lower versions of the two libraries but still to no avail. This is the error.
[!] CocoaPods could not find compatible versions for pod "FBSDKLoginKit":In Podfile:FBSDKLoginKitflutter_facebook_auth (from `.symlinks/plugins/flutter_facebook_auth/ios`) was resolved to 6.0.4, which depends on FBSDKLoginKit (~> 16.3.1)flutter_login_facebook (from `.symlinks/plugins/flutter_login_facebook/ios`) was resolved to 1.9.0, which depends on FBSDKLoginKit (= 16.2.1)
Can someone help me on this?