I have an image contents byte[] form. But when i load them through Glide then broken images are shown. what I\'m doing is shown below.
Glide.with(context)
I do it a bit differently
byte[] bytes = Glide.with(context) .as(byte[].class) .load(url) .submit() .get();
The bytes are ready for file writing.