Fixed
Status Update
Comments
il...@google.com <il...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
commit 78161c6a8a9369a1b1db5fa49e79ee453b268394
Author: Jeremy Woods <jbwoods@google.com>
Date: Mon Apr 12 16:55:41 2021
Add new line to FragmentStore dump()
Added new line to FragmentStore dump to properly format the dump of the
ActiveFragments.
RelNote: "Fixed the incorrect indentation of ActiveFragments when
dumping the contents of the FragmentManager."
Test: ./gradlew bOS
Bug: 183705451
Change-Id: If5c339c3052a95bf5f1db4f97d460b4969ea31cb
M fragment/fragment/src/main/java/androidx/fragment/app/FragmentStore.java
https://android-review.googlesource.com/1673539
Branch: androidx-main
commit 78161c6a8a9369a1b1db5fa49e79ee453b268394
Author: Jeremy Woods <jbwoods@google.com>
Date: Mon Apr 12 16:55:41 2021
Add new line to FragmentStore dump()
Added new line to FragmentStore dump to properly format the dump of the
ActiveFragments.
RelNote: "Fixed the incorrect indentation of ActiveFragments when
dumping the contents of the FragmentManager."
Test: ./gradlew bOS
Bug: 183705451
Change-Id: If5c339c3052a95bf5f1db4f97d460b4969ea31cb
M fragment/fragment/src/main/java/androidx/fragment/app/FragmentStore.java
jb...@google.com <jb...@google.com> #3
This has been fixed internally and will be available as part of the Fragment 1.3.3
release.
Description
when I use [adb shell dumpsys activity $pkgname],FragmentStore dump indents incorrectly like below:
[
Active Fragments: XFragment{$XIdentityHashCode} ($XWho) tag=$Xtag)
...
YFragment{$YIdentityHashCode} ($YWho) tag=$Ytag)
]
it should be:
[
Active Fragments:
XFragment{$XIdentityHashCode} ($XWho) tag=$Xtag)
...
YFragment{$YIdentityHashCode} ($YWho) tag=$Ytag)
]
old support library has not this problem.