Reputation: 1057
As the title, how can I look at the logcat of my app on my phone? I think since Android 4.1, root access is required to view logcat. How what can I do to
Upvotes: 0
Views: 1302
Reputation: 815
if your phone has an adb binary, try this way:
adb
adb connect 127.0.0.1
adb logcat
This might work on some phones, not tested. Good luck.
Upvotes: 1