Reputation: 1672
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
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
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