android 9.0系统造成App内图片无法加载解决方案
2019-07-12 本文已影响0人
杰子他爸
原因:android9.0系统默认禁止http协议,即禁止明文传输,必须使用https来通讯;而app中所使用的图片和某些地方用的正好是http协议的方式。
image.png
解决方法:最简单的就是在AndroidManifest.xml的application中添加如下一条属性即可:android:usesCleartextTraffic="true"
原因:android9.0系统默认禁止http协议,即禁止明文传输,必须使用https来通讯;而app中所使用的图片和某些地方用的正好是http协议的方式。
image.png
解决方法:最简单的就是在AndroidManifest.xml的application中添加如下一条属性即可:android:usesCleartextTraffic="true"