Colin White
Colin White
@alekseyHunter I agree with @devmike01 I think there might be something wrong with your path, though I'm not sure exactly how to represent a Windows drive name in an Okio...
Are all new requests cancelled if they're launched after the view is reattached to the activity? If you use an `ImageView` attached to a fragment, that fragment must be attached...
@darrentaft The scope in `RealImageLoader` is only cancelled by `onConfigurationChanged` if the `ImageLoader` is freed by the GC, which won't occur for the singleton image loader. Are you sure the...
The svg decoder should already take into account the intrinsic size. Can you try setting [`useViewBoundsAsIntrinsicSize = false`](https://github.com/coil-kt/coil/blob/2.x/coil-svg/src/main/java/coil/decode/SvgDecoder.kt#L39) and see if that fixes your issue? Does it work properly if...
If the ask is to multiply an SVG image's intrinsic width/height `px` to match its density similar to https://github.com/coil-kt/coil/issues/2048 then we could potentially add a new constructor param. Though, my...
Thanks for the repro project. Which device did you run the tests on?
What API levels does this occur on? Is there a subset of devices that this occurs on?
@Mkohm That sounds like it could be a separate memory leak. Please file an issue (ideally with a way to reproduce)! @lkhore Did you test in release mode? Compose is...
@Bodo1981 It looks like the ANR is occurring inside the `DiskCache`: `coil.disk.DiskLruCache.get`. If you disable the disk cache does that resolve the ANR? Also is the ANR noticeable when scrolling?...
@Bodo1981 Thanks for the repro. Unfortunately I don't have access to a Pixel 7, but once I get access to one I'll circle back and take a look.