Hi I was wondering if there was a command similar to fastboot's -i
in adb. I'm currently trying to find my device in adb, but I could only target the device in fastboot with -i
and the vendor id (I got it with lsusb -v
) and got nothing in adb. I added:
SUBSYSTEM=="usb", ATTR{
idVendor
}
=="0x1f3a", MODE="0666", GROUP="plugdev"
to /etc/udev/rules.d/android-51.rules
to try and get it to come up in adb but nothing came up in the devices list (I saw on a tutorial that it would make the device show up). Thanks!