I want to add both AdMob and iAd support into an app.
Here are the issues I am having:
-
The links provided in the beta test e-mail for the AdMob plug-in do not include documentation on the supported ad sizes. I need to know what to pass in. (e.g. 320x50)
-
I assume the answer is no, but does the AdMob plug-in support backfilling with iAds (part of the AdMob SDK)?
-
There is no example on how to use the ads API to support two networks at the same time, even the examples for iAd, Inneractive, and InMobi (the publicly supported networks) are separated out.
What I mean by #3 is that I don’t know whether to do this:
iAds = require(“ads”)
AdMob = require(“ads”)
–initialize both and treat them separately
OR this (I know I’m leaving out params):
ads = require(“ads”)
ads.init(“iads”)
ads.init(“admob”)
OR something else.