- 播放大概6次之后无广告播放,重新打开游戏还是一样,显示no advertisement,没有错误代号
- 预期表现
- 复现路径
let VideoAd = wx.createRewardedVideoAd({ adUnitId: ‘adunit-3e74bd7ba5b5cd21’ });
VideoAd.load()
.then(() =>VideoAd.show())
.catch(err => console.log(err.errMsg));
VideoAd.onClose(res => {
if (res && res.isEnded || res === undefined) {
// 正常播放结束,可以下发游戏奖励
if (window.tet.HuoDongBool){
cc.director.loadScene(“GameNormal”);
};
if (window.tet.KuaSuBool){
cc.director.loadScene(“TimeGame”);
}
}
else {
// 播放中途退出,不下发游戏奖励
cc.director.loadScene(“MainScenes”);
}
})