Hi there.
I'm implementing a photo gallery with Jetpack Compose. The URI obtained from ContentResolver is passed to AsyncImage of Coil library. It works.
However, every time the app is restarted, the images are reloaded, which causes a slight time lag in the display. I think caching the small thumbnail images needed for display to disk will speed up loading, but Coil's disk cache only works with HTTP Fetcher.
Do you have a good idea? Should I implement a disk cache myself?