I am unable to access my tablet (Pipo S1) through adb - after running adb devices
, there are no devices visible. USB debugging is enabled, and I have tried 2 different USB ports and cables.
I was able to find the vendor ID through lsusb
, which is 2207
. I added this ID to /etc/udev/rules.d/70-android.rules
, 51-android.rules
and 99-android.rules
, after reading different conflicting information online. The exact line I added was:
SUBSYSTEM=="usb", SYSFS{idVendor}=="2207", MODE="0666", GROUP="adbusers"
Even after multiple server restarts, unplugging and re-plugging the device, I am still unable to see it. Any ideas? My end goal is to root this tablet without resorting to windows based apps.
/lib/udev/rules.d
rather than to/etc
. Does this help? – Takkat Aug 25 '13 at 13:51