Reputation: 11
I have downloaded the Facebook iOS SDK 4.2 from https://github.com/facebook/facebook-ios-sdk. When I try to compile the library, its giving an error "/facebook-ios-sdk-master/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.m:23:9: 'Bolts/BFAppLink.h' file not found". Later, I have crosschecked in github and found that Bolts-IOS @ 51bde07 is empty. Can some one let us know is this the known issue or when facebook would be updating the source files?
Upvotes: 1
Views: 792
Reputation: 136
Bolts framework is linked as dependency. If you're cloning the source with git, you need to call git submodule init
. Otherwise, I would suggest you to download from Facebook Developer site, as mentioned in the README
file that's shown below here.
Excerpt below:
Upvotes: 1