Reward based video ad failed to load: No ad returned from any ad server.'
Although on Chartboost, it says my publishing campaign is active.
My Ad Unit ID is: ca-app-pub-7039390731388004/3457078997
Thanks
print("Reward received with currency: \(reward.type), amount \(reward.amount).")
}
func rewardBasedVideoAdDidOpen(_ rewardBasedVideoAd: GADRewardBasedVideoAd) {
print("Opened reward based video ad.")
}
func rewardBasedVideoAdDidStartPlaying(_ rewardBasedVideoAd: GADRewardBasedVideoAd) {
print("Reward based video ad started playing.")
}
func rewardBasedVideoAdDidClose(_ rewardBasedVideoAd: GADRewardBasedVideoAd) {
print("Reward based video ad is closed.")
}
func rewardBasedVideoAdWillLeaveApplication(_ rewardBasedVideoAd: GADRewardBasedVideoAd) {
print("Reward based video ad will leave application.")
}
Do I have to call these manually?
Thanks