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