@Rob
Yes, I know that the ads do not work in the simulator. These messages are coming from the build process in the Corona simulator. I make simulator builds, then I upload the apk file to the android device and launch the application, the banner does not appear. The application is added to the AppLovin developer portal. I tried to connect vpn, but it did not work.
Here is the code I used in main.lua:
local applovin = require( "plugin.applovin" ) local function adListener( event ) if ( event.phase == "init" ) then -- Successful initialization print("GOT INIT") applovin.show( "banner", "bottom" ) -- bottom or top you choose end if(event.error) then for k,v in pairs( event ) do print( "applovin listener got error ", k, v) end end end -- Initialize the AppLovin plugin applovin.init( adListener, { sdkKey="XXXX" }) -- XXXX my sdkKey