我有一个特定的要求,我必须阻止来自应用程序的所有 http 请求,但是有一个特定的 http url,一个库使用它我必须将其列入白名单。尝试如下设置 network_security_config xml,但无法加载该 http url。在清单文件中也定义了 network_security_config xml。
网址格式为http://abc.xyz.org
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="false" />
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">"abc.xyz.org"</domain>
</domain-config>
</network-security-config>
有什么我在这里想念的吗。