美文网首页
Android 9 Pie: http 及 https 的网络连

Android 9 Pie: http 及 https 的网络连

作者: 静默的小猫 | 来源:发表于2019-05-07 09:22 被阅读0次

    问题:应用运行在Android 9设备上时,发现http网络请求没有任何的响应。

    官方资料在框架安全性变更提及,地址为:https://developer.android.google.cn/about/versions/pie/android-9.0-changes-28

    默认情况下启用网络传输层安全协议 (TLS)如果您的应用以 Android 9 或更高版本为目标平台,则默认情况下 isCleartextTrafficPermitted() 函数返回 false。 如果您的应用需要为特定域名启用明文,您必须在应用的网络安全性配置中针对这些域名将 cleartextTrafficPermitted 显式设置为 true。

    具体解决方案

    方案一、服务器和本地应用都改用 https (推荐)

    方案二、targetSdkVersion 降级回到 27

    方案三、共二步,参考资料为:https://stackoverflow.com/questions/51902629/how-to-allow-all-network-connection-types-http-and-https-in-android-9-pie

    第一步:在清单文件AndroidManifest.xml的application标签里面设置networkSecurityConfig属性如下:

    <?xml version="1.0" encoding="utf-8"?>

    <manifest ... >

        <application android:networkSecurityConfig="@xml/network_security_config">

             <!-- ... -->

        </application>

    </manifest>

    第二步:在资源文件夹res/xml下面创建network_security_config.xml如下:

    <?xml version="1.0" encoding="utf-8"?>

    <network-security-config>

        <base-config cleartextTrafficPermitted="true">

            <trust-anchors>

                <certificates src="system" />

            </trust-anchors>

        </base-config>

    </network-security-config>

    参考csdn:https://blog.csdn.net/weixin_40865431/article/details/85163631

    参考csdn:https://blog.csdn.net/hewenlee/article/details/84097493

    附上链接:https://stackoverflow.com/questions/45940861/android-8-cleartext-http-traffic-not-permitted

    相关文章

      网友评论

          本文标题:Android 9 Pie: http 及 https 的网络连

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