Colin White
Colin White
@GrahamBorland Not sure if this fixes the issue for you, but we needed to have our generic `T` type be ``.
@atulgpt I think the biggest challenge will be figuring out how to get MP4s to be represented as a `Drawable`. Ideally we could use [`MediaMetadataRetriever`](https://developer.android.com/reference/android/media/MediaMetadataRetriever) to decode the mp4 into...
@sagar-viradiya Gave a great talk on some of the internals [here](https://www.youtube.com/watch?v=5MpFcTty9pM)!
Hi folks, big update! There are now plans to add [Kotlin Multiplatform](https://kotlinlang.org/docs/multiplatform.html) support to Coil and this will be the main feature of 3.x. I can't offer a timeline, but...
@mxalbert1996 The goal is to support Kotlin Multiplatform and Compose Multiplatform with as many targets as possible. The Android target will have the most functionality by supporting lifecycles, views, and...
@glureau My guess is it would be slightly slower given `BitmapFactory` is an Android framework class, which is why we should continue to use `BitmapFactory` on Android and skiko only...
@sonatard That's still up for discussion. I think it's likely we migrate to Ktor and make it an optional dependency to support https://github.com/coil-kt/coil/issues/1648.
Unfortunately I don't think it's possible for Coil to work-around this Android bug internally, though I'm open to a PR if someone figures out how. If you run into this...
@jimmytrivediuser You may be able to work around this by only using `GifDecoder.Factory()` and not `ImageDecoderDecoder.Factory()`. Alternatively you could submit a fix to [`ImageDecoderDecoder`](https://github.com/coil-kt/coil/blob/main/coil-gif/src/main/java/coil/decode/ImageDecoderDecoder.kt) and resolve the issue.
Hi folks, quick update on this. This is definitely something I want to address properly in Coil 3.0. Ideally, we can kill two birds with one stone and hoist `AsyncImagePainter`...