hi Brent,
yes it is set up as in the docs, problem occurs when trying to use 2 different ads.
Devices are, nexus 7, htc one x, samsung galaxy s3, htc sensation.
I have no issues displaying either type but both is a no no.
I know I should only init once but it inits the appID for a banner or an interstitial.
Example:
initialize admob
I have a banner ad setup with an appID
I have an interstitial setup with an appID2
[lua]
local provider = “admob”
local appID = “appID”
local appID2 = “appID2”
ads.init( provider, appID, adListener )
ads.init( provider, appID2, adListener )
local adX = 0
local adY = 0
ads.show( “interstitial”, { x=adX, y=adY } )
ads.show(“banner”, { x=adX, y=adY })
[/lua]
the hide it
ads.hide(“banner”) …unsure if this can be done but works ok
ads.show(“interstitial”)
ads.hide(“banner”)
etc etc
Seems I can only call one appID at a time when I init the session.