sunnycupertino / cordova-plugin-admob-simple

Cordova plugin allowing Admob interstitials and banner ads.
MIT License
164 stars 150 forks source link

can't handle events #40

Closed yanbaha closed 5 years ago

yanbaha commented 5 years ago

I tried to display interstitial but not working: showAds() { admob.banner.show({ id:'ca-app-pub-1266469958489664/2945967705' }).catch(console.log) admob.interstitial .load({ id: 'ca-app-pub-1266469958489664/1154250177' }) .then(() => document.getElementById('showAd').onclick = function() { admob.interstitial.show() }

  )
  .catch(console.log)
admob.rewardVideo
  .load({ id: 'ca-app-pub-1266469958489664/3752493354' })
  .then(() => admob.rewardVideo.show())
  .catch(console.log)

},

any idea???