美文网首页android疑难杂症
java.io.IOException: Cleartext H

java.io.IOException: Cleartext H

作者: 寒冷de星空 | 来源:发表于2020-07-20 18:06 被阅读0次

Android9.0 默认是禁止所有的http

请求的,需要在代码中设置如下代码才可以正常进行网络请求: android:usesCleartextTraffic="true"。如图

<application
android:name="xxxx.xxxx.xxx.xxx"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppBaseTheme"
android:usesCleartextTraffic="true">
更高得编译版本中 使用如上配置也不起作用,需要添加配置文(network_security_config.xml)件如下:

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true"/>
</network-security-config>
之后在application中添加配置如下,即可:

<application
.....
android:networkSecurityConfig="@xml/network_security_config"
.......>

相关文章

网友评论

    本文标题:java.io.IOException: Cleartext H

    本文链接:https://www.haomeiwen.com/subject/vdbykktx.html