okhttp3 访问服务器失败 onFailure 提示CLEARTEXT communication to host not permitted by network

解决方法!!!这真的是一个坑

在res下新建一个xml目录 创建名为network_security_config.xml 文件 ,该文件内容如下:



    

然后在 AndroidManifest.xml application 标签内应用上面的xml配置:

android:networkSecurityConfig="@xml/network_security_config"

 

你可能感兴趣的:(Android,Android坑)