android 关于CLEARTEXT communication to xxx.xxx not permitted by network security policy错误

Posted Dr_abandon新秀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 关于CLEARTEXT communication to xxx.xxx not permitted by network security policy错误相关的知识,希望对你有一定的参考价值。

错误 网络请求时

// android P系统限制了明文流量的网络请求 就会报这个错误
CLEARTEXT communication to xxx.xxx   not permitted by network security policy
解决方法
  1. res目录下新建一个xml文件夹
  2. 新建 network_config.xml
<?xml version ="1.0" encoding ="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true" />
</network-security-config>
  1. 添加到application中
<application
        android:name=".MyApp"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:hardwareAccelerated="false"
        android:configChanges="touchscreen"
        android:networkSecurityConfig="@xml/network_config"
        android:theme="@style/AppTheme">

以上是关于android 关于CLEARTEXT communication to xxx.xxx not permitted by network security policy错误的主要内容,如果未能解决你的问题,请参考以下文章

android 关于CLEARTEXT communication to xxx.xxx not permitted by network security policy错误

Android 中的离子 5/电容器 ERR_CLEARTEXT_NOT_PERMITTED

为啥我在升级到 Cordova Android 8 后看到 net::ERR_CLEARTEXT_NOT_PERMITTED 错误?

Android之webView打开http链接页面无法加载显示net:ERR_CLEARTEXT_NOT_PERMITTED

Android之webView打开http链接页面无法加载显示net:ERR_CLEARTEXT_NOT_PERMITTED

Android之网络请求提示Cleartext HTTP traffic to dev*******.com not permitted