我正在使用 google_mobile_ads 包。它向我展示了这个错误。我正在尝试用户奖励视频测试广告。他们没有加载。
Use RequestConfiguration.Builder().setTestDeviceIds(Arrays.asList("7D77F0F7912B63850A1FB8986F58DE38") to get test ads on this device.
Not retrying to fetch app settings
我正在使用 google_mobile_ads 包。它向我展示了这个错误。我正在尝试用户奖励视频测试广告。他们没有加载。
Use RequestConfiguration.Builder().setTestDeviceIds(Arrays.asList("7D77F0F7912B63850A1FB8986F58DE38") to get test ads on this device.
Not retrying to fetch app settings
您需要将您正在使用的设备添加到测试设备列表中才能获得测试广告:
await MobileAds.instance.initialize();
初始化后添加:
MobileAds.instance.updateRequestConfiguration(
RequestConfiguration(
tagForChildDirectedTreatment:
TagForChildDirectedTreatment.unspecified,
testDeviceIds: <String>[
"7D77F0F7912B63850A1FB8986F58DE38",
],
),
);