linux - Not found LG Optimus L3 E400f ???????????? no permissions to test apps android -
helllo i'm try test applications android in mobile lg optimus l3 e400f, not works. things try solve mistake.
1.identify device id type lsusb , show :
bus 001 device 003: id 1004:61fc lg electronics, inc.
2.edit file /etc/udev/rules.d/51-android.rules , add next things:
subsystem=="usb", sysfs{idvendor}=="1004", mode="0666"
3.restar computer
4.run adb , find devices, moment when give mistake(again):
./adb devices
this show:
list of devices attached ???????????? no permissions
(always mobile has been on development mode).
how fix trouble?.
thanks.
try using attr{idvendor
instead of sysfs
like so:
subsystem=="usb", attr{idvendor}=="1004", mode="0666"
and if doesn't work put group="plugdev"
@ end of line.
Comments
Post a Comment