I'm getting the following error when trying to load an interstitial ad through admob in my iOS app. I'm thinking I have something configured wrong, but I'm not really sure what the error message means in order to debug any further. Can someone PLEASE tell me what this means?
Error Domain=com.google.admob Code=21 "The ad string could not be loaded because it was invalid." UserInfo={NSLocalizedDescription=The ad string could not be loaded because it was invalid.}
Failing code:
let adUnitID = "ca-app-pub-3940256099942544/4411468910" // admit test interstitial ad unit id
interstitial = try await InterstitialAd.load(with: adUnitID)
Thanks in advance!
I'm getting the following error when trying to load an interstitial ad through admob in my iOS app. I'm thinking I have something configured wrong, but I'm not really sure what the error message means in order to debug any further. Can someone PLEASE tell me what this means?
Error Domain=com.google.admob Code=21 "The ad string could not be loaded because it was invalid." UserInfo={NSLocalizedDescription=The ad string could not be loaded because it was invalid.}
Failing code:
let adUnitID = "ca-app-pub-3940256099942544/4411468910" // admit test interstitial ad unit id
interstitial = try await InterstitialAd.load(with: adUnitID)
Thanks in advance!
Share Improve this question asked yesterday JakeJake 13.8k10 gold badges46 silver badges73 bronze badges 4
GADApplicationIdentifier
in there as well as a list ofSKAdNetworkItems
. Is there anything else I should have in there? – Jake Commented yesterday.load
method? I think it has aRequest()
. – sonle Commented yesterday