Android: what profiling tools are available in Eclipse to view scalability?

I am developing a piece of Java code to run on Android. I did some testing to see how scalable it is. First, I ran the code on the Windows desktop, and then on the Android 4.0 device. The latter weighs very poorly compared to the former. I need to find out if there are some flaws in my code that cause this. Which profiling tool / plugin would you recommend profiling both on the device and on the desktop to compare apples to apples? Thanks.

+4
source share
1 answer

I did some testing to see how scalable it is.

The term β€œscales” is commonly used to refer to servers that must be β€œscaled” for a large number of concurrent users.

Which profiling tool / plugin would you recommend profiling both on the device and on the desktop to compare apples to apples?

There is no such tool as far as I know.

If you feel that your Android code is not working efficiently, use Traceview to find out where your hotspots are.

+1
source

Source: https://habr.com/ru/post/1397065/


All Articles