Is there a way of viewing the LogCat messages in the android Emulator, I would like to view the LogCat that is shown in Eclipse in the screen of the Emulator or in a real device. Thanks for the help!
Asked
Active
Viewed 64 times
2 Answers
0
Technically you connect to emulator the same way you connect to real device, so you can see all the logcat
output in Eclipse w/o any problems by default

Marcin Orlowski
- 72,056
- 11
- 123
- 141
-
Yes, I can see the LogCat output in Eclipse without any problems, but I would like to see the same output but in the Emulator screen. – Oliver Jan 19 '14 at 19:59
0
If you are running an Android version below JellyBean (4.1), you can do that with an app like aLogcat
. If you want to do it programmatically, e.g. this question will help you.
Unfortunately, Google changed LogCat so that applications can only read their own logs starting from Android 4.1 on unrooted devices.