AdMob.addListener(InterstitialAdPluginEvents.Loaded, (info: AdLoadInfo) => {
// Subscribe prepared interstitial
console.log("adloaded")
});
AdMob.addListener(InterstitialAdPluginEvents.Dismissed, ( ) => {
// Subscribe prepared interstitial
console.log("Dismissed")
});
AdMob.addListener(InterstitialAdPluginEvents.Showed, ( ) => {
// Subscribe prepared interstitial
console.log("Showed")
});
when i add this above 3 listener only this two(InterstitialAdPluginEvents.Loaded, InterstitialAdPluginEvents.Showed)listener called one after ads load and another after ad display . i am using capacitor admob plugin 5.3.0
Note : it is working fine on android.
is there any one facing this issue or how to fixed this ?
#ionic6
#capcitor5