HM Tamim
HM Tamim
What if we catch the exception like this? ``` suspend fun SubSamplingImageSource.canBeSubSampled(context: Context): Boolean { if (this is ResourceImageSource) { return !isVectorDrawable(context) } if (this !is BufferedSubSamplingImageSource) { return true...
Agreed. The crash rate of this exception is quite low, so it must be some kind of edge case. The temporary fix should at least avoids direct app crashes.
Any update on this issue?