Jason Ching
Jason Ching

Reputation: 1057

How do I look at my app's logcat on cell phone

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

Answers (1)

bladefury
bladefury

Reputation: 815

if your phone has an adb binary, try this way:

  1. enable ADB over Wi-Fi, check this out.
  2. in your app, execute adb connect 127.0.0.1 then adb logcat, parse the output.

This might work on some phones, not tested. Good luck.

Upvotes: 1

Related Questions