My app's firebase constantly getting `java.lang.Ru...
# compose
t
My app's firebase constantly getting
java.lang.RuntimeException: Canvas: trying to draw too large(116051928bytes) bitmap
, it seems when using accompanist to load a network image that is too large to load, is there any optimization we can do to avoid this exception?
c
What size are you setting on the
Image
? If you're relying on the image wrapping the content, you can tweak the loaded size via the
requestBuilder
👍 2
t
Thanks! I think tweaking the loaded size via the 
requestBuilder
should work for me.