I did try the new released Facebook SDK for Swift Github, added but after
pod 'FacebookCore'
But after
pod install
I get a error, see attached image
Are there more steps needed?
Facebook SDK in Swift is still in Beta. You should wait until it is out of beta.
This is a post from facebook:
Since Swift is still under active development, the Facebook SDK for Swift Beta supports Swift 2.2.1 and 2.3, which gives you the ability to submit apps to the Apple App Store today. Later this year we will update the Facebook SDK for Swift when Swift 3 reaches GM.
Related
So I'm having trouble updating the Facebook SDK for iOS and Android on my Ionic Capacitor 3 project. The Facebook SDK for iOS has to be version 8 or higher to support the new iOS 14 tracking updates.
The thing is, the Facebook dashboard sends me to this url Facebook upgrade guide. For iOS, you only have to add some pods to your Podfile, but this doesn't seem to change anything. I'm using the capacitor plugin capacitor-firebase-auth to handle the authentication.
I'm not really sure what I'm doing wrong, is it a problem that I don't use the Facebook SDK directly, by using it through capacitor-firebase-auth?
This is the warning I'm getting:
I'm using:
Ionic 5
Capacitor 3
capacitor-firebase-auth 3.0.0
My Podfile.lock shows a FacebookSDK of 5.15.1
Solved it by using the Facebook Capacitor Login plugin. Keep in mind that it took 3 days before the iOS SDK version in the Facebook Dashboard got updated!
Referring to the question here
ios facebook login sdk 4.28.0 error code 3
I am facing the same issue. Trying to run the app on iOS 9 device, I receive the same error. The problem now is that the required versions are not available as Cocoapods. Tried to update using GitHub link I got the attached error.
Thanks
I have Used Login using Facebook Feature in My App and Im getting FBSDKLoginManagerLoginResult as IsCancelled always. This Issue occurs only in IOS 11. Is there any possibilities to solve this issue and Im Currently using Xcode 9 Beta with Facebook SDK 4.1.0. Thanks in advance.
I have fixed the issue by updating my FacebookSDK to 4.22.0
pod 'FBSDKCoreKit', '4.22.0'
pod 'FBSDKLoginKit', '4.22.0'
pod 'FBSDKShareKit', '4.22.0'
Now it works fine with the Xcode 9 beta and IOS 11-developement version. And in IOS 11 safari will handle the login with facebook feature because from IOS 11 the default facebook, twitter are removed.
On iOS 11, be sure, that you don't set
FBSDKLoginManager *facebookLoginManager = [FBSDKLoginManager new];
[facebookLoginManager setLoginBehavior:FBSDKLoginBehaviorSystemAccount];
because system account is no longer available.
I tried to integrate quickblox including the framework, QMService and QMMessenger but I failed. I cannot run QuickBlox iOS Sample Chat example either. I am using cocoapods and xcode 7.
Latest QuickBlox iOS SDK 2.4.4 is fully compatible with Xcode7 and Swift2
http://quickblox.com/developers/IOS#Framework_changelog:
So, I just downloaded the new Facebook iOS SDK version 3.1. When I run a sample code, it complains about Social.framework that doesn't exist in my Xcode 4.4
I already have Xcode 4.5, but the problem is, Xcode 4.5 doesn't allow us to use iOS 4.2. And I need to run it on iOS 4.2.
So, if I use old Facebook SDK, that can run on Xcode 4.4, will Apple reject it?
Apple is so difficult these days.