美文网首页
Android http无法请求网络

Android http无法请求网络

作者: 板栗炖牛肉 | 来源:发表于2020-10-12 13:54 被阅读0次

前言

Android 9 及以上限制了明文流量的网络请求。

解决方案

1.在res目录下新建一个xml目录,和一个xxx.xml的文件

image

2.写入这段代码

<?xml version="1.0" encoding="utf-8"?><network-security-config> <base-config cleartextTrafficPermitted="true" /></network-security-config>

3.最后在AndroidManifest下的application中加入xml配置

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

相关文章

网友评论

      本文标题:Android http无法请求网络

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