I have an existing bridge header that currently contains several obj-c modules. I am having a problem importing a flash framework using Xcode saying
'Flurry.h' file not found
although it was correctly inserted using containers.
My bridge title now looks like
#import <EstimoteSDK/EstimoteSDK.h> #import <SDWebImage/UIImageView+WebCache.h> #import <FBSDKCoreKit/FBSDKCoreKit.h> #import <FBSDKLoginKit/FBSDKLoginKit.h> #import "Flurry.h" // <----- The Warning is here
I tried several alternatives to #import "FlurrySDK/Flurry.h" and #import <Flurry.h>
My pod is imported using
use_frameworks! pod 'FlurrySDK', '~>6.6'
and is here

source share