android安卓app编译报错Cleartext HTTP traffic to xxx not permitted解决方案
在AndroidManifest.xml配置文件的标签中直接插入
android:usesCleartextTraffic="true"
有以下三种解决方法:
(1)APP改用https请求
(2)targetSdkVersion 降到27以下
(3)更改网络安全配置
前面两个方法容易理解和实现,具体说说第三种方法,更改网络安全配置。
1.在res文件夹下创建一个xml文件夹,然后创建一个network_security_config.xml文件,文件内容如下:
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
2.接着,在AndroidManifest.xml文件下的application标签增加以下属性:
<application
...
android:networkSecurityConfig="@xml/network_security_config"
3.在AndroidManifest.xml配置文件的标签中直接插入
android:usesCleartextTraffic="true"
欢迎讨论,相互学习。
cdtxw@foxmail.com