Nexus 7 Tablet Not Recognized By Adb
Solution 1:
You can try with these steps:
- stop the server with: adb kill-server.
- Go to ~/.android/ and if doesn't exist create the file: adb_usb.ini
- Add a line with the value: 0x18d1 (the vendorId of your device).
- Save and close the file.
Try again. For me it worked (i'm using a 100 euros tablet...) Finally if you still have problems you can create an udev rule in /etc/udev/rules.d/51-android.rules, like the following:
SUBSYSTEM =="usb", ATTR{idVendor}=="18d1", MODE ="0666", GROUP ="plugdev"
And make sure that your user is in plugdev group. Hope this help.
Solution 2:
A friend gave me a new cable. Now my tablet shows with adb devices -l
, lsusb
, dmesg
with no errors, and works from Eclipse Android SDK Bundle.
Solution 3:
Have you checked the permissions of the block device? Try starting the adb server as root.
Solution 4:
Do you have the right driver installed on your computer?
Even if the tablet is recognized, this doesn't necessarily mean the driver is installed.
You can find drivers for the Nexus 7 here: http://www.asus.com/Tablets_Mobile/Nexus_7/#support_Download_32
Post a Comment for "Nexus 7 Tablet Not Recognized By Adb"