Reputation: 25874
I've been developing in several Android devices since now but this one has me totally puzzled. ADB in Windows detects the device just fine, but I cannot make ADB recognize this device in Linux (Ubuntu 12.04).
$ adb devices
List of devices attached
???????????? device
lsusb
shows it as Bus 003 Device 005: ID 18d1:0003 Google Inc.
/etc/udev/rules.d/51-android.rules
file has the following line: SUBSYSTEM=="usb", ATTRS{idVendor}=="18d1", MODE="0666"
~/.android/adb_usb.ini
has 0x18d1
in a line by itselfWhat I've attempted so far:
SUBSYSTEM=="usb", ATTRS{idVendor}=="18d1", ATTR{idProduct}=="0003", MODE="0666", GROUP="adbusers"
to 51-android.rules
and add myself to adbusers
group. Restart udev
and ADB - no luckUpvotes: 1
Views: 7301