jobi mg
jobi mg

Reputation: 747

How to check the performance of an Android application using Android Studio?

How to analyze the use of resources like:

in an application developed in the Android Studio, so I can prepare a report based on performances?

Upvotes: 1

Views: 7616

Answers (2)

Ricardo Faria
Ricardo Faria

Reputation: 794

You can measure App performance with Android Profiler.

  • It provides real-time data for your app's CPU, memory, and network activity.
  • You can perform sample-based method tracing to time your code execution, capture heap dumps, view memory allocations, and inspect the details of network-transmitted files.

Image retrieved from Android Developers page

Upvotes: 4

Kiran Benny Joseph
Kiran Benny Joseph

Reputation: 6823

After running your program there will be a tabbed pane below the android studio.You can check your performance using this.. enter image description here

Upvotes: 2

Related Questions