Hi everybody, we have a memory leak caused by loading images into a LazyColumn that only occurs in compose 1.2.x. It is not broken in 1.1.x. A colleague of mine experienced the same problem in a completely different codebase. We are using Coil, but he tried a few image loaders and the loader did not make a difference. With Coil it is obvious that every in the LazyColumn is loaded from memory after the first display of loading from disk. We have a few hundred images. The problem is that I just wrote a minified test project to reproduce the problem, but it doesn't happen there. In our actual app we also have images outside of the LazyColumn, which are discarded from memory correctly. Any ideas what it might be that has the references to the images? Our app simply has an Image with a
rememberImagePainter
and they're just embedded deep within the Composition, with nothing referring them.