Based on my understanding of Android Monitor, an Android device needs to be connected to the machine that is running Android Studio in order to profile CPU/memory/GPU usage. Are there any methods that allow profiling an app without connecting it to the PC? For example, writing the debug info that is generated for Android Monitor in a file and process the file later?
My goal is to gather debugging information without connecting the Android device to a PC (either via a USB cable or over the network).
Your initial work with a device usually needs to be over USB. However, after that point, you can switch using
adb
over the network, usingadb connect
. Once you haveadb
connected over the network, everything works just as if you had connected it via USB, including full Android Studio access.Bear in mind that:
Some devices do not need the initial USB connection, as they are designed to work with
adb
over the network "out of the box" (e.g., Fire TV)I think that older devices may not support this, for some value of "older"