解决Glide加载Https链接的图片失败
发布网友
发布时间:2023-03-05 01:46
我来回答
共1个回答
热心网友
时间:2023-08-20 16:14
原来后端url地址是http的方式,后来改成https,然后所有采用Glide加载的图片都无法正常显示了。
打开github上的glide:https://github.com/bumptech/glide/releases,找到对应版本的
glide-volley-integration-4.7.0.jar 或者
glide-okhttp3-integration-4.7.0.jar 或者引入aar
implementation'com.github.bumptech.glide:volley-integration:1.3.1@aar'
都可以。
这种问题应该是https网络请求的时候没有设置白名单导致。
jar的内容大致就是这几个类:
现在我们采用volley+glide的方式
最后
在manifest上加入配置