Replies: 1 comment 1 reply
-
This sounds like https://issuetracker.google.com/issues/240975572, which is fixed in |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use Compose LazyColumn. Each item has
AsyncImage
. The more i scroll, the more ram my application uses. I tried to set bothmemoryCachePolicy
anddiskCachePolicy
to disabled, but it didn't do a thing, memory usage kept going up. Clearing cache withmemoryCache.clear()
anddiskCache.clear()
not working too. (It's 100% problem on the Coil side. I already tried to remove AsyncImage from item, and ram was fine). May be i am missing something that solves this problemBeta Was this translation helpful? Give feedback.
All reactions