Raymond Xie
Raymond Xie
the email you sent is correct. but i prefer tracking issue and discuss here, as other people can join discussion too. only when you wanna discuss something confidential, send me...
Fixed in 3229136c33cab24d907f1bb746380ff1f68f87fa New version of AdMob Android SDK added a virtual API, just implement: ```java //@Override public void onRewardedVideoCompleted() { fireAdEvent(EVENT_AD_WILLDISMISS, ADTYPE_REWARDVIDEO); } ```
Please use the latest version, `[email protected]`
@Ices-Eyes yes, you are correct. I made a stupid mistake, comment out the wrong line in a hurry. Should be line 684. Now updated as `[email protected]`.
@Cycododge as the AdMob SDK API is not compatible to old version, currently you may need find the code: https://github.com/floatinghotpot/cordova-admob-pro/blob/master/src/android/AdMobPlugin.java#L684 ```java //@Override public void onRewardedVideoCompleted() { fireAdEvent(EVENT_AD_WILLDISMISS, ADTYPE_REWARDVIDEO); } ```...
It depends. The `public void onRewardedVideoCompleted()` is newly introduced in latest google play library. If you are working with most latest google play library, @Override should work. You can remove...
See the temporary solution here: https://github.com/floatinghotpot/cordova-admob-pro/pull/650/commits/05e1dbc71c75bdafda8fcf74d6c6dbbd1e3e0fd9 in plugin.xml, change: ```xml ``` to: ```xml ``` I will find better solution later, but you can use this one for now.
the plugin has been modified to resolve this issue. try update the plugin to [email protected]
Thanks to @slaszu for the advice. The plugin has been modified to resolve this issue as a temporary solution. Try updating the plugin to [email protected]
@mauricioLopezRamirez please double check your admob ad unit id, and make sure the ad unit is created for the right platform and right type.