I am using Corona on iOS, and have manged to get the Banner ad to show, but not on the bottom, as I want it to.
I load the ad on one screen
applovin.load( "banner")
and then on the next I have the commands:
local isAdLoaded = applovin.isLoaded( "banner" ) if ( isAdLoaded == true ) then applovin.show( "banner", "bottom" ) end
This shows the banner on the top of the screen, and not on the bottom as I want it to.
Support from Applovin said that "It sounds like you are missing to put your banner object in a container and then place that banner container at the bottom of the screen."
I cannot see that this should be necessary from any of the documentation.