美文网首页
Android9,http适配,解决不能使用http协议

Android9,http适配,解决不能使用http协议

作者: A然后呢 | 来源:发表于2020-06-24 22:30 被阅读0次

    Android9开始原生不支持http协议需要适配
    res目录下创建xml目录 ,xml目录里面新建xml文件 名字叫 network_security_config.xml
    文件内容如下

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

    修改清单文件 application头标签加入属性

    android:networkSecurityConfig="@xml/network_security_config"
    

    相关文章

      网友评论

          本文标题:Android9,http适配,解决不能使用http协议

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