'Status in Android
During the test, the application stops responding. Is there a way to find out the status of the application via adb? I tried
adb shell pidof app,
the app is still running
Solution 1:[1]
You can use logcat to see the messages or exceptions of the app before stopping.
Logcat is a command-line tool that dumps a log of system messages, including stack traces when the device throws an error and messages that you have written from your app with the Log class.
See more details at Logcat command-line tool .
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Diego Torres Milano |
