Reputation: 3711
Is there any way to see the printing message (eg: Log.i('', ''))
while running Android app in Android phone ? (not in emulator).
Upvotes: 2
Views: 274
Reputation: 35956
yes u can install this after u show your logcat another way
If u r requirement is like u need logcat output withot connecting to PC anyway running in application when u require to download app for that like above
Upvotes: 1
Reputation: 43349
Yes you can debug your application directly on your Android device. You need to enable USB Debugging
on your device. And whenever you will run/debug that application you will be able to see the messages in LogCat
view
Upvotes: 2
Reputation: 39604
You can view the log exactly in the same way as you'd view the emulators log. Either using the the Eclipse's ADT logcat view or by issuing adb logcat
in a terminal.
Upvotes: 3