gpt4 book ai didi

Flutter firebase_admob 在testdevice中不显示广告

转载 作者:行者123 更新时间:2023-12-02 16:45:58 25 4
gpt4 key购买 nike

我无法在我的设备上的测试应用中显示我的广告单元。

我正在使用 firebase_admob 0.9.1+1 插件

这是我使用的代码:

import 'package:firebase_admob/firebase_admob.dart';

Future initAppAds() async {
//Récupère du coup le bon ID selon si je suis sous IOS ou Android
print(getAppId());
await FirebaseAdMob.instance.initialize(appId: 'ca-app-pub-xxxxxxxxMyAppIdxxxxxxxxxxx');

}


Future launchAds() async {
print("launchAds");
print(getInterstitialId());
MobileAdTargetingInfo targetingInfo = MobileAdTargetingInfo(
nonPersonalizedAds: true,
);


InterstitialAd myInterstitial = InterstitialAd(
adUnitId: 'ca-app-pub-xxxxxxxxxxxxx/xxxxMyAdBloc',
targetingInfo: targetingInfo, //Info de l'utilisateur
listener: (MobileAdEvent event) {
print("InterstitialAd event is $event");
},
);

await myInterstitial.load();
await myInterstitial.show(
anchorType: AnchorType.bottom,
anchorOffset: 0.0,
horizontalCenterOffset: 0.0
);

}

这是我得到的日志:

2866-2866/com.fabien.movizz I/Ads: Use RequestConfiguration.Builder().setTestDeviceIds(Arrays.asList("6C11832B439BDE4C399171C8D4CC6515") to get test ads on this device.
6769-3457/? W/Ads: App does not have the required permissions to get location
6769-3539/? I/Ads: SDK version: afma-sdk-a-v20088999.15301000.1
6769-3539/? W/Ads: Received error HTTP response code: 400
2866-2866/com.fabien.movizz I/Ads: Ad failed to load : 0

所以我这样指定了我的设备的 ID:

  MobileAdTargetingInfo targetingInfo = MobileAdTargetingInfo(
nonPersonalizedAds: true,
testDevices: <String>["6C11832B439BDE4C399171C8D4CC6515"],
);

但广告仍然没有出现。这是我得到的日志:

2866-2866/com.fabien.movizz I/Ads: This request is sent from a test device.
6769-3380/? W/Ads: App does not have the required permissions to get location
6769-3457/? I/Ads: SDK version: afma-sdk-a-v20088999.15301000.1
6769-3457/? W/Ads: Received error HTTP response code: 400
2866-2866/com.fabien.movizz I/Ads: Ad failed to load : 0

如果我使用测试广告provided by Google ,广告效果很好,这是我得到的日志:

2866-2866/com.fabien.movizz I/Ads: This request is sent from a test device.
6769-3539/? W/Ads: App does not have the required permissions to get location
6769-5440/? I/Ads: SDK version: afma-sdk-a-v20088999.15301000.1

我的广告单元有什么问题?我在 2 天前创建了它,我是否等待足够长的时间让它出现?

感谢您的帮助;)

enter image description here

这是我的 flutter 医生: enter image description here

最佳答案

您从 admob 收到 Ad failed to load : 0 这意味着您的代码没有错误,您需要稍等片刻。您的广告 ID 是新创建的,因此从谷歌服务器获取广告需要一些时间。

如果您的广告不是新创建的,则错误可能是由于使用了错误的 Admob 应用程序 ID,或者在某些情况下没有将付款信息添加到您的 admob 信息中心。

关于Flutter firebase_admob 在testdevice中不显示广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60466849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com