【问题标题】:Flutter: Ad failed to load : 1颤振:广告未能加载:1
【发布时间】:2021-05-11 01:49:58
【问题描述】:
我正在使用 google_mobile_ads 包。它向我展示了这个错误。我正在尝试用户奖励视频测试广告。而且他们没有加载。
Use RequestConfiguration.Builder().setTestDeviceIds(Arrays.asList("7D77F0F7912B63850A1FB8986F58DE38") to get test ads on this device.
Not retrying to fetch app settings
【问题讨论】:
标签:
flutter
dart
admob
rewardedvideoad
googlemobileads
【解决方案1】:
您需要将您正在使用的设备添加到测试设备列表中才能获得测试广告:
await MobileAds.instance.initialize();
初始化后添加:
MobileAds.instance.updateRequestConfiguration(
RequestConfiguration(
tagForChildDirectedTreatment:
TagForChildDirectedTreatment.unspecified,
testDeviceIds: <String>[
"7D77F0F7912B63850A1FB8986F58DE38",
],
),
);