Open zronn opened 6 years ago
@ratson same as #184
In my case, ads are not showing even in test mode
So you probably have some other issue. I've reinstalled all from scratch and test is working without any issue.
This is my code :
window.admob.interstitial.config({
id: INTERSTITIAL_AD_ID,
});
// Create banner
await window.admob.interstitial.prepare();
document.addEventListener('admob.interstitial.events.LOAD', () => {
window.admob.interstitial.show();
});
Here is the code I'm using to prepare the interstitial ad :
At this point, the interstitial is correctly prepared. Then, two listener are setted to check if the ad correctly loaded, and another one if it failed :
In my case, it always failed. Here is the response from the listener :
Thanks for your help.