Hello, I noticed an issue with AdMob ad placement whenever I use ‘letterbox scaling’ in my apps.
The following code shows how I instantiate the ad. As you can see, I set the x position to be 0.
ads.show( "banner", { x=0, y=10000000, appId=menuScene.adInfo.appID} )
When there is no letterbox scaling, it works perfectly:
HOWEVER, when there is letterbox scaling, Corona SDK fails to make the appropiate adjustments for the ad position. Instead of positioning the ad on the x = 0 of the Corona app, it positions the ad on the x = 0 of the device. This results in an off-putting and ugly layout.
Does anyone know a workaround around this bug so that I can position the ad correctly, or am I doing something wrong? Thanks in advance.