performance-samples icon indicating copy to clipboard operation
performance-samples copied to clipboard

Samples to show APIs and best practices in Performance on Android

Results 15 performance-samples issues
Sort by recently updated
recently updated
newest added

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) to 7.2.6 and updates ancestor dependencies [protobufjs](https://github.com/protobufjs/protobuf.js), [@google-cloud/monitoring](https://github.com/googleapis/google-cloud-node/tree/HEAD/packages/google-cloud-monitoring) and [firebase-admin](https://github.com/firebase/firebase-admin-node). These dependencies need to be updated together. Updates `protobufjs` from 7.2.4 to 7.2.6 Release notes Sourced from protobufjs's...

dependencies
javascript

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2. Release notes Sourced from express's releases. 4.19.2 What's Changed Improved fix for open redirect allow list bypass Full Changelog: https://github.com/expressjs/express/compare/4.19.1...4.19.2 4.19.1 What's Changed Fix...

dependencies
javascript

Bumps [jose](https://github.com/panva/jose) from 2.0.6 to 2.0.7. Release notes Sourced from jose's releases. v2.0.7 Fixes add a maxOutputLength option to zlib inflate (02a6579), fixes CVE-2024-28176 Changelog Sourced from jose's changelog. 2.0.7...

dependencies
javascript

Building on https://github.com/android/performance-samples/pull/257 Ideally with an implementation of TraceMetric.

Hi! 👋 I know that it's not directly related to running Macrobenchmarks but maybe someone has run into a similar issue with [Firebase Test Lab](https://github.com/android/performance-samples/tree/main/MacrobenchmarkSample/ftl). My configuration is pretty basic,...

How to implement microbenchmark test for compose function?

enhancement

I am trying to run the benchmarks on the Macrobenchmark sample and some of the tests are failing. I am using the unaltered HEAD of the `main` branch, and executing...

Hi, I have migrated to `androidx.benchmark:benchmark-macro-junit4:1.2.2` and when running the assembleDebugAndroidTest task for firebase testlab I am getting the following error (Same for 1.2.0-1.2.2): ![Screenshot 2023-12-06 at 11 53 26](https://github.com/android/performance-samples/assets/77275085/b01f3718-4e61-4aef-b428-246df50b86fe)...

Currently, when benchmarking a suspending function, I do the following: ``` val benchmarkRule = BenchmarkRule() @Test fun benchmarkSubject() = benchmarkRule.measureRepeated { runBlocking { subject.suspendingFunction() } } ``` Is this the...

enhancement