Hi guys I need some help implementing reward video listeners. I have a basic setup of admob nothing else other than using the plugin https://github.com/floatinghotpot/cordova-admob-pro.git
SO Simply better said I need to reward my players after watching the video how do I do it??
//this is my admob.js///////////////////////////////////////////////////////
var admobid = {};
if( /(android)/i.test(navigator.userAgent) ) {
admobid = { // for Android
banner: '',
interstitial: '',
rewardvideo: 'my code etc',
};
} else if(/(ipod|iphone|ipad)/i.test(navigator.userAgent)) {
admobid = { // for iOS
banner: '',
interstitial: '',
rewardvideo: 'my code etc',
};
} else {
admobid = { // for Windows Phone
banner: '',
interstitial: '',
};
}
if (AdMob) AdMob.createBanner( {
adId: admobid.banner,
isTesting: false,
overlap: true,
offsetTopBar: false,
position: AdMob.AD_POSITION.BOTTOM_CENTER,
bgColor: 'black'
});
if (AdMob) AdMob.prepareInterstitial( {adId:admobid.interstitial, autoShow:false} );
if (AdMob) AdMob.prepareRewardVideoAd({ adId:admobid.rewardvideo, autoShow:false} );
////////////////////////////////////////////////////////////////////////////////bellow is a simple function used in my game
///now with this I do my reward video call in a function in my game
///this bellow gets called when a button is hit and launches the reward
///video
freecoinsss:function()
{
if (AdMob) AdMob.showRewardVideoAd();
},
now my problem is how can I get the eventlistener with a function awarding my players for watching the video "this is the function I want to call to award players" rewardforvideo(); coding in phaser btw
rewardforvideo:function()
{
var reward = 50;
var cash = localstorage.getItem('money');
var newcash = (reward+cash);
localstorage.setItem('money',newcash)
},
I found this https://developers.google.com/admob/android/rewarded-video-adapters but Im stuck implementing it HElppppppp :(!!!!
I've been working on this issue for about an hour now, and due to the limited event listeners on the cordova-plugin-admobpro plugin, the best solution I was able to come up with was to set a timer for 10 seconds (the minimum ad length) and then wait for the onAdDismiss event to fire. Obviously this still means if a video is exited 10 seconds into a 30 second ad they would still receive credit.
See rough example below:
With the code provided in the documentation (and your answer), you can click out of the ads instantly and still receive the reward.