I am not using Android Studio, so when coding or debugging an application, I send the .apk with:
adb install -r test.apk
and run it. Recently, since using Thread
, I get a Unfortunately, app has stopped
crash. I tried to use:
adb logcat
but it is totally impossible to see anything in it, because I see hundreds of lines per second, and it never stops.
How to display only messages associated to a specific .apk with adb logcat
?
On Linux, a grep
could probably work, but I doubt it would work with adb
on Windows (that I am using).