Status Update
Comments
jb...@google.com <jb...@google.com>
jb...@google.com <jb...@google.com>
tp...@gmail.com <tp...@gmail.com> #2
What steps are needed to reproduce this issue? Frequency of occurrence?
Which Android build are you using? (e.g. OPP1.170223.012)
Which device did you use to reproduce this issue?
Android bug report (to be captured after reproducing the issue)
For steps to capture a bug report, please refer:
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Note: Please upload the bug report and screenshot to google drive and share the folder to android-bugreport@google.com, then share the link here.
jb...@google.com <jb...@google.com> #3
Android version: T
Problem recurrence: Execute Antutu, and pay attention to the XML processing score
Phenomenon: replace the "name expected" in the KXmlParser.java file on the ssi side with a variable. After modification, the XML processing score of Angora Rabbit improved significantly.
Modify to: static final private String NAME_ EXPECTED = "name expected"; And use NAME_ EXPECTED for subsequent "name expected"
Thanks!
jb...@google.com <jb...@google.com> #6
We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
tp...@gmail.com <tp...@gmail.com> #7
Okay, thanks!
ma...@gmail.com <ma...@gmail.com> #8
Can you tell us if you have the link to the benchmark tests and the scores BEFORE and AFTER applying this change?
na...@google.com <na...@google.com> #9
About 45000 before modification
About 49000 after modification
Thanks!
za...@google.com <za...@google.com> #10
Thanks for the above information, we have shared this with our product and engineering team and will update this issue with more information as it becomes available.
ma...@zentity.com <ma...@zentity.com> #11
Thanks again for the feedback! Our product and engineering teams have evaluated the request and responded:
However, I can't find the source codes of the Antutu benchmarks.
Here are my suggestions, and you can consider one of the following options:
-
Can you provide the source code of benchmark to reproduce the result? Particularly, why do you mention that it improves the performance of JSON parsing? It would be great that we can reproduce the result and runs the benchmark continuously if the benchmark result is important
-
If you know how to change the code, you can consider uploading a patch to AOSP directly at
http://r.android.com/ . We will review it and consider accepting it.
an...@gmail.com <an...@gmail.com> #12
Please provide the requested information to proceed further. Unfortunately the issue will be closed within 7 days if there is no further update.
jb...@google.com <jb...@google.com> #13
We are closing this issue since we didn't receive a response. If you are still facing this problem, please open a new issue and add the relevant information along with reference to this issue.
go...@gmail.com <go...@gmail.com> #14
I have a BottomNavigationView and I just quickly click on two elements asynchronously and within 1 minute it crashes
You probably have test projects, two fragments will be enough
jb...@google.com <jb...@google.com> #15
We will need you to file a new bug with a minimal sample project that reproduces this issue.
Description
Version used: 2.6.0-beta01
Devices/Android versions reproduced on: Everywhere
Crash stack trace
java.lang.IllegalArgumentException: The fragment BottomSheetFragment{6c59aad}
(a05692b2-965c-40c6-82ce-57991ab0e8d6 tag=b3f6ebd6-263b-402f-8ebe-7762287c5f6d) is unknown to the FragmentNavigator. Please use the navigate() function to add fragments to the FragmentNavigator managed FragmentManager. (FragmentNavigator.kt:147)
at androidx.fragment.app.FragmentManager.executeOpsTogether(FragmentManager.java:1918)
at androidx.fragment.app.FragmentManager.removeRedundantOperationsAndExecute(FragmentManager.java:1845)
at androidx.fragment.app.FragmentManager.execPendingActions(FragmentManager.java:1782)
at androidx.fragment.app.FragmentManager$5.run(FragmentManager.java:565)
You can reproduce crash in the attached project.
Project has 3 fragments.
1. StartFragment
2. BottomSheetDialog
3. SimpleFragment
Navigation flow looks like: StartFragment (click on button) -> Navigation opens BottomSheet dialog fragment (click on button) -> crash.
But in 2.6.0-alpha09 and below crash is not reproduced and all works fine (BottomSheet dialog disappears and SimpleFragment appears, back stack looks like StartFragment -> SimpleFragment)
Thanks.