Oct 20, 2017 کو اپ ڈیٹ کیا گیا
The interstitial ads just appear after video has finished(videoView.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mp) {
//Called method when video finish
loadAds();
launchInterstitial();
}
});
}
private void launchInterstitial(){
if (mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
}
})