Admob在已发布的应用中显示了测试间隙



我已经在我的iOS应用程序中添加了间隙间隙,它们在模拟器上正常工作,显示了测试间隙。但是,在App Store上发布了我的应用程序后,我意识到,间质仍显示了测试的间隙,而不是实时/付费的间隙广告。我在这里错过了什么吗?

听起来好像您忘了从ADMOB请求中删除测试ID。您的请求应该看起来像这样:

// AdMob Interstitial Request
interstitial.adUnitID = myPublisherID; // Your publisher ID
GADRequest *request = [GADRequest request]; // Creates the request
request.testDevices = @[ @"myTestID"]; // Your test ID
[interstitial loadRequest:request]; // Loads the request

删除或评论request.testDevices = @[ @"myTestID"]并提交您的应用程序的更新。

最新更新