floatinghotpot / cordova-plugin-flurry

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

Android: Multiple NativeAd in the same view #22

Closed zckrs closed 9 years ago

zckrs commented 9 years ago

How can we use multiple NativeAd in the same page ?

floatinghotpot commented 9 years ago

Multiple native ad support has been adde, just pass ad Id in format of "apikey/index", for example:

var apikey = "G56KN4J49YT66CFRD5K6";
var adid = apikey + "/0";
var adid2 = apikey + "/1";
FlurryAds.createNativeAd(adid);
FlurryAds.createNativeAd(adid2);