floatinghotpot / cordova-plugin-flurry

Cordova plugin to support Flurry (analytics and advertisement)
MIT License
19 stars 13 forks source link

plugin not working in ios #12

Closed deepanshushukla closed 9 years ago

deepanshushukla commented 9 years ago

Can you give me complete flow of how to setup flurry ads plugin in ios .

from flurry developer portal to cordova. as i have implemented it its working fine in android but not in ios.

floatinghotpot commented 9 years ago

in flurry portal, create an app for iOS, copy the API key (we need set it in our app).

the run following commands to use the plugin:

cordova create test1 com.rjfun.test1 test1
cd test1
cordova platform add ios
cordova plugin add com.rjfun.cordova.flurryads
rm -r www/*; cp plugins/com.rjfun.cordova.flurryads/test/* www/;
{replace the ad_units in www/index.html with your own API key}
cordova prepare;
cordova run ios;
deepanshushukla commented 9 years ago

http://stackoverflow.com/questions/26886349/phonegap-plugin-for-flurry-ads please check this url

floatinghotpot commented 9 years ago

now i understand the situation.

the plugin is using flurry latest SDK 5.4, which supports iOS 8, and also used a new class introduced in iOS 8.

as you are using iOS 7.0.1, which is not compatible with the flurry sdk and the plugin. so you need upgrade to iOS 8 SDK.

it's also required by Apple when you submit your app to app store.