M.V.
M.V.

Reputation: 1672

Android debugging on device - LogCat doesn't work!

Hi I use Nexus One to debug my project...

But when connected to computer (with Debugging mode ON) no Log is in Debug mode (Eclipse). The app is installed ad started from computer, but logs don't show...

What can I do? And idea?

Upvotes: 2

Views: 3676

Answers (2)

uTubeFan
uTubeFan

Reputation: 6794

First, make sure that your Nexus One is recognized by ADB by typing adb devices.

Is it there? (on Windows you will need a device driver for the Nexus One).

Then, type ddms to invoke the DDMS view independently of Eclipse.

Upvotes: 1

dst
dst

Reputation: 1788

Try switching to the Android Perspective (DDMS). There should be a list of all running devices connected to the ADB. Select the device you're using and the LogCat should be displayed.

Upvotes: 7

Related Questions