custom ByteArrayFetcher not working as expected #1200
-
In v1.4.0 I have copied custom
I added it to
But it didn't help. Then tried to add it on each
Still it cannot show the image. Did anybody faced & solved that (kind of) issue? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hmm your Also Coil 2.0 adds support for |
Beta Was this translation helpful? Give feedback.
Hmm your
Fetcher
class does look correct. I'd check what error you're getting usinglistener(onError = {})
.Also Coil 2.0 adds support for
ByteBuffer
s so you could also wrap the array usingByteBuffer.wrap(array)
then you don't need the customFetcher
.