I am using https://github.com/floatinghotpot/cordova-admob-pro in my phonegap application.
For interstitial and banner I am using
AdMob.showInterstitial();
AdMob.showBanner(getSelectedPosition());
is working correctly. Now I am trying to display the Reward video. Firstly I have prepared the Reward video by
AdMob.prepareRewardVideoAd({adId: admobid.reward, autoShow: false});
Then I am trying to show it
AdMob.showRewardVideoAd();
But the video is not displaying, The method showRewardVideoAd() is my guess w.r.t. showInterstitial(), In documentation I have not found any method as AdMob.showRewardVideoAd().
What is the correct method, How should I display it ? please help
I am not sure, but maybe you should wait for the video to be prepared before calling the
showRewardVideoAd. Try to call that function from inside the success callback ofprepareRewardVideoAd.Also, are you using "Admob." before the function calls? I think it is needed.