java.io.IOException: Cleartext HTTP traffic to xxx not permitted

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

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

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)件如下:





之后在application中添加配置如下,即可:

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

你可能感兴趣的:(java.io.IOException: Cleartext HTTP traffic to xxx not permitted)