ratson / cordova-plugin-admob-free

New development has been moved to "admob-plus-cordova", https://github.com/admob-plus/admob-plus/tree/master/packages/cordova
https://github.com/admob-plus/admob-plus
MIT License
498 stars 214 forks source link

Interstitial on Android #360

Closed bx67212 closed 5 years ago

bx67212 commented 5 years ago

This morning my app crash on admob.interstitial.show(); I see debug and it seems due to com.google.android.ads.AdActivity:

Second failure launching com.google.android.gms.ad.adactivity android.os.transactiontoolargeexception data parcel size

fnrol commented 5 years ago

same issue with me on android 8

and another issue https://github.com/ratson/cordova-plugin-admob-free/issues/359

andrelicoski commented 5 years ago

I have the same problem

bx67212 commented 5 years ago

It seems not due to plugin... I think Google have some issues, now is ok

hypesol commented 5 years ago

I am facing the same issue. is there any other best plugin for AdMob?

andrelicoski commented 5 years ago

I solved my problem by changing..

window.plugins.AdMob.interstitial.prepare(); window.plugins.AdMob.interstitial.show();

for..

window.plugins.AdMob.interstitial.prepare(); document.addEventListener('admob.interstitial.events.LOAD', function(e) { window.plugins.AdMob.interstitial.show(); });