登录
注册
写文章
发现
工具
安卓9.0版本不能访问http请求
_3t3lfz KEKfID
编辑文章
安卓9.0版本不能访问http请求
asfx站长
2020.08.14 14:56:16
阅读
797
安卓9.0以上系统不能成功请求http,(默认https). 修改配置如下: 1.在res/xml目录下新建xml文件(若res下没有xml目录则自己新建一个),文件名为:network_security_config.xml ```xml <?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-config cleartextTrafficPermitted="true"> <trust-anchors> <certificates src="system" /> </trust-anchors> </base-config> </network-security-config> ``` 2.在AndroidManifest.xml文件的application加入配置 ```xml <application android:networkSecurityConfig="@xml/network_security_config" > ```
我的主页
退出