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 212 forks source link

Anyone got it work with ionic 1.x? #238

Open lolaswift opened 6 years ago

lolaswift commented 6 years ago

Cloudn't build it for android. platforms/android/src/name/ratson/cordova/admob/AbstractExecutor.java:3: error: package com.google.android.gms.ads does not exist

And will this plugin work with ionic 1.x? it's written in Typescript?

beevelop commented 6 years ago

With old versions of Ionic / without Ionic Native you can access the plugin via the window.plugins.AdMob object. Afaict everything else pretty much works the same. E.g.:

var AdMob = window.plugins.AdMob

AdMob.banner.config({
  isTesting: true,
  autoShow: true
})

...
lolaswift commented 6 years ago

@beevelop Thanks.