performance-samples
performance-samples copied to clipboard
Samples to show APIs and best practices in Performance on Android
Android Performance
A collection of samples using the performance libraries.
You can learn more about Android Performance at https://d.android.com/performance.
Macrobenchmark sample
This sample shows how to use the Macrobenchmark library for testing application startup and runtime
performance cases, such as scrolling a RecyclerView
or LazyColumn
to measure jank.
Baseline Profiles can be generated with the Macrobenchmark library. This sample contains code to generate a baseline profile.
The sample also includes a GitHub workflow to run Macrobenchmarks on Firebase Test Lab. For more information refer to the README.md.
The Macrobenchmark sample also demonstrates using Jetpack Compose with Macrobenchmark.
Microbenchmark sample
This sample shows how to use the Benchmark library to benchmark code and UI from library modules.
Important Notes
- Make sure your device's screen is on before running benchmarks
JankStats sample
This sample shows how to set up and use the JankStats library to detect janky frames.
Reporting Issues
You can report an Issue with a sample using this repository. If you find an issue with a specific library, report it using the corresponding issue tracker link available in the sample README file.
Additional Resources
- Example of benchmarking an androidx.paging backed RecyclerView
- Example of benchmarking asynchronously scheduled background work