我不确定它何时首次发生,但我的应用的免费版本不再展示广告。在LogCat中,我看到以下内容:
广告服务器无法填充。 从现在起安排广告刷新60000毫秒 无法加载广告:3 广告不可见。没有刷新广告
这是我的代码(不执行抛出异常):
// Create an ad
adView = (AdView) context.findViewById(R.id.adView);
// Create an ad request. Check logcat output for the hashed device ID to get test ads on a physical device.
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
.addTestDevice("C159C2E9AAFBF1EF1788369DDBFCD344")
.build();
// Start loading the ad in the background.
adView.loadAd(adRequest);
有什么建议吗?
答案 0 :(得分:1)
这是正常的回应。 设备可能不时有广告,在这种情况下,您将收到“广告服务器无法填充”。
最佳缓解措施是在没有填充的情况下使用中介迭代多个广告网络。