qdsfdhvh / compose-imageloader

Compose Image library for Kotlin Multiplatform.

Home Page:https://qdsfdhvh.github.io/compose-imageloader/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Broken cache with buildFeatures.compose

MichalKlusak opened this issue · comments

Image cache is not working when buildFeatures.compose is set to true. When Image is recomposed, library try to download image from url again and not hit the cache. When buildFeatures.compose is turned off, the cache is working.

diskCacheConfig {
    directory(context.applicationContext.cacheDir.toOkioPath())
    maxSizeBytes(512L * 1024 * 1024) // 512MB
}

Versions:
Kotlin = 1.8.10
Gradle = 8.0.2
AGP = 7.4.2
Compose = 1.3.1 (multiplatform)
ImageLoader = 1.3.1 (for 1.4.0 the same result)

commented

Hi, thanks for using, buildFeatures.compose and cache should not be related, I think it should be caused by other problems, can you provide a reivew demo?