Fixed
Status Update
Comments
lp...@google.com <lp...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
commit 20112348e9cf68cf81ae9b54fb3c0b18150edb71
Author: Marcello Galhardo <mgalhardo@google.com>
Date: Fri May 10 11:10:17 2024
Move `compose-ui` to `androidMain` in `viewmodel-compose`
Test: N/A
Fixes: 339562627
Change-Id: Ia3b0638b3f4b61ba760d3c10337275a255d898e8
M lifecycle/lifecycle-viewmodel-compose/build.gradle
https://android-review.googlesource.com/3079334
Branch: androidx-main
commit 20112348e9cf68cf81ae9b54fb3c0b18150edb71
Author: Marcello Galhardo <mgalhardo@google.com>
Date: Fri May 10 11:10:17 2024
Move `compose-ui` to `androidMain` in `viewmodel-compose`
Test: N/A
Fixes: 339562627
Change-Id: Ia3b0638b3f4b61ba760d3c10337275a255d898e8
M lifecycle/lifecycle-viewmodel-compose/build.gradle
lp...@google.com <lp...@google.com> #3
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.lifecycle:lifecycle-viewmodel-compose:2.8.1
androidx.lifecycle:lifecycle-viewmodel-compose-android:2.8.1
androidx.lifecycle:lifecycle-viewmodel-compose-desktop:2.8.1
ma...@gmail.com <ma...@gmail.com> #4
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-alpha01
androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.0-alpha01
androidx.lifecycle:lifecycle-viewmodel-compose-desktop:2.9.0-alpha01
jb...@google.com <jb...@google.com> #5
Since the
Please file a bug against Fragments the with a sample project that reproduces this issue and we will be happy to take a look at what's going on.
ma...@gmail.com <ma...@gmail.com> #6
I can confirm that using fragment 1.2.2 resolves the issue, thank you!
Without an explicit dependency declaration version 1.1.0 was still used (transient dependency of appcompat 1.1.0).
Without an explicit dependency declaration version 1.1.0 was still used (transient dependency of appcompat 1.1.0).
Description
PreferenceFragmentCompat sets this adapter (PreferenceGroupAdapter), which implicitly registers an observer. PreferenceFragmentCompat never sets the adapter to null when the view is destroyed, so the observer keeps references to the RecyclerView and doesn't get gc'ed.
I've worked around this by explicitly setting the adapter to null in an override of onDestroyView, but since my component doesn't explicitly have ownership of the list handling, I'd argue that PreferenceFragmentCompat should do this cleanup.
It would be solved by setting the RecyclerView adapter to null in the fragment's onDestroyView.
Here's a memory dump.