hi,i am using only interstitial ads in my app from admob.for some reason when i try
my ads on real device i get only blank ads on my device??
can anyone tell me where i went wrong?
i my corona simulator output i get these three warnings:-
1.)coronaprovider.ads.admob is not configured in build.settings
(i checked with the doc. i am completely sure i did it correctly)
2.)the ads provider(admob) is not available on the simulator(so i tried on real device)
3.)ads library is not available on this platform
ads = require( "ads" ) appIdAdmob = "ca-app-pub-xxxxxxxxxxxxxxxx/xxxxxx" adProvider = "admob" function adListener( event ) if ( event.isError ) then else ads.show("interstitial") end end --then in create(scene) ads.init( "admob", appIdAdmob, adListener ) ads.load("interstitial") --then in show(scene(phase=="did")) ads.show( "interstitial" ) i am sure my build.setting is right can anyone tell me where i went wrong??

