Hi I have a very strange problem.
I have my backend in Back4app and I have a class with a column: image. The url of the image is like "https://..." I try to load it with Glide using
Glide.with(context)
.load("https://back4app...image.png")
.into(imageView);
No image load. I said it is strange because before it run, but now I get the ssl error.
What is the problem? I note that when I change the url from "https" to "http" it runs.