Can someone help me? The advertisements do not appear. When I open it in the simulator, I followed the two messages:
WARNING: The ‘ads’ library is not available on this platform.
WARNING: the ‘ads’ provider (admob) is not available on the simulator.
Then I tested in the smartphone. Also nothing appears. Could anyone help me? The stretch of the ads is this:
local ads = require( “ads” )
local adProvider = “admob”
local banner = “ca-app-pub-8498730568781592/82538*****”
local function adListener( event )
if ( ads.isLoaded(“interstitial”)) then
ads.show(“interstitial”,{appId=banner,x=0,y=0})
end
end
ads.load( “interstitial”, { appId=“banner”, testMode=false } )
ads.init( adProvider, banner, adListener )