Yan
Yan

Reputation: 1

Is it possible to use android studio profiler from console?

Is it possible to run profiler from the console, or are there any console equivalents?

Upvotes: 0

Views: 949

Answers (1)

Yi Yang
Yi Yang

Reputation: 441

The short answer is no. But depending on which feature in Android Studio profiler you want to use I maybe able to point you to the right command line tool, e.g. simpleperf for Java/Kotlin method sampling, Perfetto for System Trace.

Fundamentally Android Studio profiler is a visualization tool, so a command line version isn't going to be very helpful.

Upvotes: 1

Related Questions