Fixed
Status Update
Comments
th...@gmail.com <th...@gmail.com> #2
Running into a similar issue, any update on this?
da...@google.com <da...@google.com> #3
This is a platform behavior change.
ap...@google.com <ap...@google.com> #4
Reassigning to current owner per go/androidx/owners.
th...@gmail.com <th...@gmail.com> #5
Re-triaging by request.
da...@google.com <da...@google.com> #6
Any progress?
th...@gmail.com <th...@gmail.com> #7
deleted
Description
There is a memory leak in
GuidanceStepSupportFragment
. In theonDestroyView
function,mGuidanceStylist.onDestroyView()
is called. When looking at the implementation for that function, you can see that views are set tonull
. However, the field calledmGuidanceContainer
is not set to null here. That causes a memory leak.