flutter - Rewarded Video Ads Error when Reload : “ad_not_loaded, show failed for rewarded video, no ad was loaded, null)”

后端 未结 4 1550
无人及你
无人及你 2021-02-20 10:56

i try to reload Rewarded Video Ads, when i call RewardedVideoAd.instance.load(adUnitId: \"xxx\", targetingInfo: xyz); i find below error :

4条回答
  •  感情败类
    2021-02-20 12:00

    You can simply caught the exception as shown below:

    myRewardVideoAd.show()
    .catchError((e) => print("error in showing ad: ${e.toString()}"));
    

提交回复
热议问题