android Eclipse logcat error: device() request rejected - device not found
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.ddmuil开发者_开发问答ib.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?
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.
精彩评论