Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
I had created the same issue with wrong component earlier
na...@google.com <na...@google.com> #3
I noticed in the sample project you're using an emulator with api30.
We found a bug that is being fixed related to api 30 emulator and baseline profile generation.
Could you please try:
- Updating the baseline profile gradle plugin version (alpha14 is the latest as we speak)
- Change api version to 33 (or anything > 30)
Let me know if this works!
Thanks!
Description
I see
Mode.Min
andMode.Max
were recently added, would it be possible to also add a Mode for P50/P90/P95/P99, or similar? For example we may expect the first execution of a block of code to be slower due to initializations, and faster on subsequent executions. It would be great to have a metric to measure this type of situation.Mode.Average
would be convenient. This can already be figured usingMode.Sum
since it supplies the count and total duration, but condensing the result into a single line would be nice.