When I load an image with something like this:
String url = "https://example.com/user/123123/profile_pic"
Glide.with(context).load(url).into(imageView);
server response is in base64 and glide doesn't handle it by default
My current solution:
load image with retrofit -> pass image encoded to glide
in this case I would lose glide caching. I wonder if there is a way to make that request with glide and handle base64 response?