gpt4 book ai didi

安卓 : Allow Cleartext http

转载 作者:行者123 更新时间:2023-11-29 22:46:10 26 4
gpt4 key购买 nike

我有一个特定的要求,其中我必须阻止来自应用程序的所有 http 请求,但是有一个库使用的特定 http url,我必须将其列入白名单。尝试如下设置 network_security_config xml 但无法加载该 http url。还在 list 文件中定义了 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>

我在这里遗漏了什么吗?

最佳答案

使用以下域规则创建 xml/network_security_config 文件。

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<!-- As you want to pass domain-specific traffic -->
<domain-config cleartextTrafficPermitted="true">
<!-- Add your specific domain you want to pass without https -->
<domain includeSubdomains="true">abc.xyz.org</domain>
</domain-config>
</network-security-config>

在 list 中添加网络安全配置:

<application android:label="your App Name" android:icon="@drawable/icon" android:networkSecurityConfig="@xml/network_security_config">

关于安卓 : Allow Cleartext http,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58432172/

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