0

我正在使用 google_mobile_ads 包。它向我展示了这个错误。我正在尝试用户奖励视频测试广告。他们没有加载。

Use RequestConfiguration.Builder().setTestDeviceIds(Arrays.asList("7D77F0F7912B63850A1FB8986F58DE38") to get test ads on this device.
 Not retrying to fetch app settings
4

1 回答 1

0

您需要将您正在使用的设备添加到测试设备列表中才能获得测试广告:

await MobileAds.instance.initialize();

初始化后添加:

MobileAds.instance.updateRequestConfiguration(
    RequestConfiguration(
        tagForChildDirectedTreatment: 
      TagForChildDirectedTreatment.unspecified,
        testDeviceIds: <String>[
          "7D77F0F7912B63850A1FB8986F58DE38",
        ],
   ),
);
于 2021-07-17T22:32:11.403 回答