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)
If you are getting error on .asBitmap() just use it like this
.asBitmap()
Glide.with(this) .asBitmap() .load(imageAsBytes) .into(image)