Hello,
I’m following This tutorial to display interstitial ads.
This is my launchInterstitial() function to display the interstitial ad.
launchInterstitial() {
let interstitialConfig: AdMobFreeInterstitialConfig = {
isTesting: true, // Remove in production
autoShow: true,
id: "ca-app-pub-xxxxxx/xxx" // ad unit id
};
this.admob.interstitial.config(interstitialConfig);
this.admob.interstitial.prepare().then(() => {
// success
});
}
Nothing is showing up.
How do I debug this ?
Thanks