0

I am having trouble getting my somewhat new Thunderbolt to print to logcat in eclipse...when I plug it in, I get the following error in the console:

[2011-08-04 11:23:10 - DeviceMonitor]Failed to start monitoring 
[2011-08-04 11:23:11 - Logcat]device () request rejected: device not found
java.io.IOException: device () request rejected: device not found
    at com.android.ddmlib.AdbHelper.setDevice(Unknown Source)
    at com.android.ddmlib.AdbHelper.executeRemoteCommand(Unknown Source)
    at com.android.ddmlib.Device.executeShellCommand(Unknown Source)

at com.android.ddmuilib.logcat.LogPanel$3.run(Unknown Source)

I can run adb just fine, and sometimes when I totally restart my computer logcat will work for a while, but it usually doesn't. Makes it hard to debug!

Anyone have any ideas?

TomBomb
  • 3,236
  • 5
  • 31
  • 40

1 Answers1

1

Try typing the following using adb (either from the adb.exe directory or after adding adb to your environment variables):

adb kill-server
adb start-server

See if this works.

EDIT:

It looks like the device is not installed on your system.

This means you need to install the manufacturer's device drivers.

The entire list can be found here.

The driver for your Thunderbolt can be found here.

Install these and restart your computer if needed, and give it a try again.

Codeman
  • 12,157
  • 10
  • 53
  • 91
  • No, that's not fixing the problem. Thanks, though! – TomBomb Aug 04 '11 at 18:59
  • Try "adb devices" in cmd to list devices to see if they are even connected. – Codeman Aug 04 '11 at 19:05
  • yea, I've tried that and I get this: List of devices attached device – TomBomb Aug 04 '11 at 19:11
  • This means that your device is not recognized in the system. I have revised my answer to suit this, check it please. – Codeman Aug 04 '11 at 19:14
  • OK that's good for a start, thank you. I forgot to mention I'm developing on a mac..it looks like HTC doesn't support Sync for Mac OSX. The only drivers I can find are .exe – TomBomb Aug 04 '11 at 22:32
  • ah, according to the Android documentation, you shouldn't need any drivers for Mac. I would make sure USB debugging is turned on and making sure unsigned applications are allowed on the phone. Both of these should be in settings on your phone. – Codeman Aug 08 '11 at 12:24