Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've just got a Lenovo Thinkpad Slate Tablet running Android and can't for the life of me get ADB to recognise it in either Win7 or Kubuntu.

USB debugging is on in the tablet settings and when I connect the tablet to the computer the "USB Debugging Connected" message appears - so all good from the tablet side of things. The computer side of things isn't so great.

Kubuntu (my main dev machine)

I've added the vendor id to the /etc/udev/rules.d/51-android.rules file (as directed here) - have tried each of the below, one at a time, with no success.

SUBSYSTEM=="usb", SYSFS{idVendor}=="17ef", MODE="0666"

SUBSYSTEM=="usb", ATTR{idVendor}=="17EF", MODE="0666", GROUP="plugdev"

SUBSYSTEM=="usb", ATTR{idVendor}=="17EF", MODE="0666"

SUBSYSTEM=="usb", ATTR{idVendor}=="17ef", MODE="0666"

For reference I have SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", MODE="0666", GROUP="plugdev" for my Nexus S and it works fine.

lsusb prints out:

root@ubuntu:/etc/udev/rules.d# lsusb
...
Bus 002 Device 008: ID 17ef:741b Lenovo 
...

Windows

Have followed these instructions and still not getting any response from adb devices.

I've restarted both machines and the tablet several times to no avail. Can anyone help?

share|improve this question
No need for "fixed" tag in question. PLease accept the correct answer, or add your own. – Nanne Oct 3 '11 at 15:31

4 Answers

up vote 6 down vote accepted

Creating the file ~/.android/adb_usb.ini and adding the vendor id (0x17ef) and restarting adb seems to have fixed the issue in both Windows and Kubuntu.

share|improve this answer

I had a problem with the Lenovo's page. My thinkpad was listed under portable devices and following the directions got me "Unable to find drive for your device". I was able to remedy by search internet for updates (which updated to a USB driver and this moved my Thinkpad to the other device's category in the Device Manager). I then was able to use the instructions as listed on the web page.

share|improve this answer

Please see this question. One of the things to make sure of is that you are not using a cheap $2 knock-off USB cable. I did this once and couldn't figure out WHY my computer would not recognize my phone. Replacing the cable fixed everything.

share|improve this answer
1  
This has happened to me so many times! I've spent hours pulling my hair out because of cruddy cables. – Martyn Oct 13 '11 at 17:12

I got mine to work by going to Lenovo's ADB Interface Driver - ThinkPad Tablet download page and following the installation instructions there. Worked like a charm!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.