Hi. I have successfully added an inneractive banner ad to my app based on the sample code from the sdk. Now I am testing a fullscreen add. It loads ok but it is not centered on the screen. Instead the top left corner of the fullscreen ad is centered… this results in most of the ad being off the screen.
my ad config is below…[minus my actual appID] .I have tried many variations on the position, but none have any effect. Ideas?
local adNetwork = “inneractive”
local appID = “–removed–”
local ads = require “ads”
ads.init( adNetwork, appID, adListener )
local widget = require( “widget” )
local sysModel = system.getInfo(“model”)
local sysEnv = system.getInfo(“environment”)
local showAd = function( adType )
local adX, adY = 0, display.contentHeight - 20
ads.show( adType, { adX, adY, interval=60, testMode=false } ) – standard interval for “inneractive” is 60 seconds
end
showAd( “fullscreen” )
below is a screenshot