hey guys
how can i change the width and height of my corona ads ??
it is displaying too small when i test it
here is my code:
local coronaAds = require( "plugin.coronaAds" ) local bannerPlacement = "bottom-banner-320x50" local function adListener( event ) -- Successful initialization of Corona Ads if ( event.phase == "init" ) then -- Show an ad coronaAds.show( bannerPlacement, false ) --coronaAds.show( interstitialPlacement, true ) end end coronaAds.init( "", adListener )