I had the same problem, the solution proposed at fooobar.com/questions/38927 / ... for the Objective-C project worked right away in my Swift project:
Write a new file in the Facebook SDK folder under Bolts.framework / Modules / module.modulemap with the following contents:
framework module Bolts { umbrella header "Bolts.h" export * module * { export * } explicit module BFAppLinkResolver { header "BFAppLinkResolver.h" link "BFAppLinkResolver" export * }}
This works without combining the headers (no longer required in version 4.0.1 of the SDK, as indicated by the OP) and without changing the build settings.
EDIT: this bug is now fixed from version 4.1 of the SDK for Facebook, the library works without any changes.
source share