0

I have an app that is best tested on mobile device, but I also like to see the catlog output. How can I see the catlog while running on mobile device?

Edit: Sorry I wasn't clear. You know how when you run app on desktop emulator, the eclipse will output logcat outputs? But I would like to see outputs to logcat when I run my app on a mobile device so to test it better.

Jason Ching
  • 1,037
  • 4
  • 19
  • 27

1 Answers1

0
in case if you want to see on eclipse : 

Make the debug mode true in manifest. (before making built)
Attach the device in to cumputer using USB cable .
Install the driver (if needed ) 
see the device in the DDMS device section(if not found then restart adb)
click on the device name in device section
Dheeresh Singh
  • 15,643
  • 3
  • 38
  • 36
  • http://stackoverflow.com/questions/2882253/how-do-i-get-the-logfile-from-an-android-device – Dheeresh Singh Jun 23 '12 at 05:48
  • Thank! But i can't find my device in the device view even after starting the adb. What can I do? Where is this driver you mentioned? – Jason Ching Jun 23 '12 at 07:28
  • driver depend on your device model.for few devices google sdk provide the driver but not for all as http://developer.android.com/sdk/win-usb.html – Dheeresh Singh Jun 23 '12 at 08:55