欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 9.0+软件某些功能突然暴毙:cleartext not permitted

程序员文章站 2022-04-02 08:34:15
线上项目某功能突然暴毙,测试后发现Android 5 没问题 Android 9+功能报错:cleartext not permitted然后去百度后才发现Android9.0对未加密的流量不在信任,添加了新的限制。解决方案:在Android 的mainfest.xml中的application添加一句配置配置的意思是:指示应用程序是否打算使用明文网络流量,例如明文HTTP

线上项目某功能突然暴毙,测试后发现Android 5 没问题 Android 9+功能报错:cleartext not permitted

然后去百度后才发现Android9.0对未加密的流量不在信任,添加了新的限制。

解决方案:
在Android 的mainfest.xml中的application添加一句配置
配置的意思是:指示应用程序是否打算使用明文网络流量,例如明文HTTP

<?xml version="1.0" encoding="utf-8"?>
<manifest ...>
    <uses-permission android:name="android.permission.INTERNET" />
    <application
        ...
        android:usesCleartextTraffic="true"
        ...>
        ...
    </application>
</manifest>

参考文档

https://www.jianshu.com/p/6b9ea90eb3c1

https://www.cnblogs.com/a155-/p/12749340.html

本文地址:https://blog.csdn.net/ywh22122/article/details/107375486

相关标签: Android