I've been working on implementing Admob ads in my Meteor application with the help of the following question: Admob Question
Is there a way to implement interstitial ads for an event? Can I just calla function that activates the ad and is it just setup like setting banner ads?
How do you implement them in Meteor Apps?
The way should be similar than what is exposed here: https://github.com/appfeel/admob-google-cordova/wiki/requestInterstitialAd
If it is about interstitials, just to ensure it is shown at the moment you want, you can call it with
autoShowIntesrtitial: false
and then implement the event listener:You could also implement
admob.events.onAdFailedToLoad
and check for error code and depending on it,setTimeout(myAppRequestInterstitial, howManyMs);
Be carefull with this user case: user leaving the app (it can cause some problems). Just ensure it works fine in all cases.