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:

enter image description here

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

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -