Android: Adb Does Not Recognize Phone
I have an unbranded Android phone here which I would like to develop some apps on. However, adb devices does not give any output. When I run lsusb, this is the output: ID 1782:5d01
Solution 1:
Adding device in android rules file :
use the following commands in ubuntu: first attach your device to system then
how to get the device vendor id:lsusb
cmd for adding device rules ,run the following commands:
sudo gedit /etc/udev/rules.d/51-android.rules
then paste your vendor id like
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", MODE="0666"
sudo chmod a+r /etc/udev/rules.d/51-android.rules
Post a Comment for "Android: Adb Does Not Recognize Phone"