我正在使用 测试Facebook Audience Network
广告AdMob
mediation
。我正在使用Mediation Test Suite
他们的文档中提到的对其进行测试。
当我尝试从 Mediation Test Suite 中的 facebook 广告加载广告时出现此错误(从 admob 加载广告工作正常)。
Error while pinging URL: http://google.com. Cleartext HTTP traffic to google.com not permitted
Ad failed to load : 0
SO中有很多类似的问题,但没有一个对我有用。这与Network security configuration
. 根据他们的文档,我在我的应用程序中添加了所有必要的文件。他们是这样的:
res/xml/network_security_config.xml
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">127.0.0.1</domain>
</domain-config>
</network-security-config>
AndroidManifest.xml
<application
...
android:networkSecurityConfig="@xml/network_security_config">
...
</application>
我也尝试过使用android:usesCleartextTraffic="true"
内部清单文件,但随后出现此错误:
Ad failed to load : 0
Received non-success response code 302 from pinging URL: http://google.com
我已按照 SO 上的一些答案中的建议卸载并安装了我的应用程序,但仍然无法正常工作。
我该如何解决这个问题?