Reputation: 124
I'm using FBSDK via cocoapods for my current project.
I'm getting error
'FBSDKCoreKit/FBSDKCoreKit.h' file not found
while using bridging header.
or getting error
No such module
FBSDKCoreKit
while not importing FBSDK in bridging header.
I've already visited following links but not getting help.
No such module FBSDKCoreKit error
No such module 'FBSDKCoreKit' XCODE 7.4
Facebook Framework is already added in project but still shows errors like "No such module FBSDKCoreKit"
Please help me to solve this issue
Note: Using code 7.3 with Swift 2.2 / 2.3
Upvotes: 0
Views: 1661
Reputation: 1051
Can you maybe try checking your header search paths and making sure it only has $(inherited) and nothing else? You can find it at your Build Settings -> Search Paths -> Header Search Paths and making sure it only has $(inherited) recursive.
Upvotes: 1