i want to have banner and interstitial in one app
my code:
local ads = require “ads”
local admob=require “ads”
ads.init( “admob”, “ca-app-pub-1979785544968924/78772”, adListener )
admob.init( “admob”, “ca-app-pub-1979785544968924/21165”, adListener )
ads.show( “interstitial”, { x=0, y=0 } )
admob.show( “banner”, { x=0, y=0 } )
it only show interstitial ads,the banner mode didn’t show
what is my wrong with my code,thanks