gpt4 book ai didi

android - 更新 Google Ads SDK 后 addTestDevice 已弃用,如何解决?

转载 作者:行者123 更新时间:2023-12-03 07:34:20 24 4
gpt4 key购买 nike

更新后 Google Ads SDK to 19.0.0 提供已弃用的警告消息addTestDevice() , 而我搜索 this link解决问题但没有成功。
我该如何解决?
这是我的代码

mAdView.loadAd(new RequestConfiguration.Builder
.setTestDeviceIds(AdRequest.DEVICE_ID_EMULATOR) // show error
.setTestDeviceIds(DEV_ID) // show error
.build());
和开发者网站建议

Deprecated AdRequest.Builder.addTestDevice(). UseRequestConfiguration.Builder.setTestDeviceIds() instead.

最佳答案

我确实喜欢这样:

List<String> testDevices = new ArrayList<>();
testDevices.add(AdRequest.DEVICE_ID_EMULATOR);

RequestConfiguration requestConfiguration
= new RequestConfiguration.Builder()
.setTestDeviceIds(testDevices)
.build();
MobileAds.setRequestConfiguration(requestConfiguration);

AdView adView = new AdView(context);
// ... invoke some methods of adView ...
adView.loadAd(new AdRequest.Builder().build());
The official referenceRequestConfiguration是将用于每个 AdRequest 的全局配置.据我了解,一旦您拥有 setRequestConfiguration() , 你的 AdRequest s单独不再需要设置测试设备。

关于android - 更新 Google Ads SDK 后 addTestDevice 已弃用,如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60539407/

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