Facebook-IOS-SDK pod installation issue - swift

I'm using Xcode 10.2 and swift 5. When I update my pods, facebook SDK pod giving me errors. please see attached image
is anyone facing this issue? How can I install pods with facebook-IOS-SDK?

This library is deprecated, seems like you need to replace the old pod with the 'FBSDKCoreKit', 'FBSDKLoginKit', and 'FBSDKShareKit' pods
Source
The old library's source

Related

No such module 'GoogleSignIn' - Xcode 12

I have seen serval questions regarding this same issue, i have gone through them all and tried them all.
I have tried :
pod deintegrate + pod install
setting Deployment Target 12.0
adding libGoogleSignIn.a to Link Binary With Libraries and to Frameworks, Libraries, and Embedded Content
Clean derivedData
Clean build folder, clean derivedData, exit Xcode , remove Pod and then install pod and then start Xcode and then build.
Checked pod folder and verified that GoogleSignIn folder exists
I have tried all of the stuff mentioned in the other answers and non of this fix my issue. I have several other pods installed and they are all working fine and has no issues.
I found a way to make it work.
Currently pod 'GoogleSignIn' installs google sign in 6.0.0 and unfortunately i was not able to do import GoogleSignIn with this version of the pod.
So i went back and changed pod 'GoogleSignIn' to pod 'GoogleSignIn' , '~> 5.0' and then i was successfully able to import GoogleSignIn
Answering back just incase someone else gets the same issue, try going back to previous versions !
If anybody has any other way to resolve this by using current version, please answer :)

how to check if the pod version is compatible with the Xcode version

how could I check or know the version of a pod that is with the current version of my xcode, I am migrating from Xcode 11.6 to 12.2 and then there is a way to check these dependencies since I get multiple errors and as I have many pods, I am something complicated I will appreciate your help very much thanks for your time
and If you want to install the specific version of the pod then after your pod name add this '~> your version'

Firebase Cocoa Pods Error After Swift 5 Update

I am currently using Xcode Version 10.2 beta 4 and have updated the project to Swift 5.
Upon doing this I have run into a ton of errors relating to my Firebase Pods.
I have deintegrated the pods and installed again and even tried pod update. I have also restarted Xcode multiple times and couldn't get these errors to clean themselves up.
Does anyone know what is happening here?
If you're using Pods, put inhibit_all_warnings! in your Podfile and run pod install to silence the warnings.
I have this issue too but with the official version of xCode 10.2. Maybe as these are only warnings it isn’t blocking anything but it is slowing up my compiler, causing other errors

Xcode 7.3.1 update to 8, Swift2 project with cocoapods fall to build

one week ago I ran my project with a few pods well on Xcode 7.3.1. But now I have upgraded to Xcode 8.
When I open the project, it asked me to convert the codes to Swift 3 automatically. If I do not convert, it exists 2 errors in some pods swift file. When I finished converting, it becomes 83 errors!! What should I do to run the project well in Xcode 8? I just use following pods:
pod "TextFieldEffects"
pod 'BTNavigationDropdownMenu'
pod 'LTMorphingLabel'
pod 'Material', '~> 1.0'
Just Do one Thing -
Open Terminal and run this command
pod update
Because currently you are using an old version.
After that if need pod install again

XCode keeps giving me "fbsdkcorekit/fbsdkcorekit.h not found" even though it's in the project.

I'm trying to implement FBSDK into my project. I already have firebase implemented, but when I try to run my project it keeps saying the framework isn't there.
I tried the step that the website gives
"Add ~/Documents/FacebookSDK to the project's Framework Search Paths setting."
But I can't even find the FrameWork Search Paths setting on the build settings tab.
I've been stuck on this one stupid part for almost two days and it's really pissed me off. I already looked through the website for solutions, but it's still not working for me.
I see you are using cocoapods.
You can integrate the Facebook SDK through cocoapods:
Include these lines in your Podfile.
pod 'FBSDKCoreKit', '~> 4.13'
pod 'FBSDKShareKit', '~> 4.13'
pod 'FBSDKLoginKit', '~> 4.13'
run pod install