Is there a way to tract the device memory while the test are executing

I’ve identified a set of steps that cause the application to crash, and I end up having to do a hard reset on the device.

I was wonder if anyone has successfully created a way to collect the application memory during runtime.

Thanks for any information you can provide.

I did figure out a way to monitor the Memory, CPU,Network and GPU while running the automated test (Android only)

With help from the android developer, I was able to execute on the current build and use the Android Monitor.

You do have to execute your test using command.addArgument("–no-reset", true);

Once you get it going it’s pretty awesome. You can switch from logcat to Monitors to help identify application issues.