Semantic Issue with Facebook FBSDK Corekit

Viewed 3043

I have several issues with the Facebook FBSDK Kit, which my fellow programmers in the project don't have. I have already set up the pods, cleaned the build files, deleted the pods, updated them but I get the same errors again.

Semantic issue - Unknown type name 'SFAuthenticationSession' AR semantic issue - No known instance method for selector 'initWithURL:callbackURLScheme:completionHandler:'

in the FBSDKApplicationDelegate.m

I am using the FBSDK Corekit 4.25.0.

Does anyone have an idea how to fix this?

In my developer team I am the only one who gets this error

Second error message

3 Answers

For me it happened using Xcode 10.1 and updating FBSDKCoreKit pod from 4.31.1 to 4.40.0. I just revert to previous version

Use following Corekit version of FBSDK, In this version has solved this issue.

pod 'FBSDKCoreKit', '~> 4.38.0'
pod 'FBSDKLoginKit', '~> 4.38.0'
Related