swift - Flurry Ads causing linker errors -
i have imported libflurryads_6.4.0.a
in project along flurryadinterstial.h
, flurryadinterstitialdelegate.h
.
then added security.framework
, systemconfiguration.framework
under build phases > link binary librarires
then added bridging header, , added under project build settings > swift compiler - code generation > objective-c bridging header > debug , release values:
#ifndef foo_bridging_header_h #define foo_bridging_header_h #import "flurryadinterstitial.h" #import "flurryadinterstitialdelegate.h" #endif
then in view controller viewdidload()
, added code:
adinterstitial = flurryadinterstitial(space: "foo interstitial") //adinterstitial class variable
when compile, following errors:
if remove variable, compile successful. don't understand error , hence not sure can resolve of this! help!
the flurryads sdk requires additional frameworks in addition frameworks flurry analytics sdk requires.
in case, sounds missing adsupport.framework.
for full list of required frameworks, check following site: https://developer.yahoo.com/flurry/docs/publisher/code/ios/
Comments
Post a Comment