My Android device Ly-706 is not listed while running adb devices.
I can run emulator using eclipse and install application on emulator using adb except on Real device
I added:
SUBSYSTEM=="usb", SYSFS{idVendor}=="040d", MODE="0666"
in /etc/udev/rules.d/90-android.rules
,still no luck
Same result for samsung galaxy 3(vendor id ="04e8")
I installed GNU/Linux (ubuntu 10.10) because it is not listing in windows.
What am I missing?
In my case it suddenly stopped detecting my device, but from time to time it detected it, which drived me crazy.
After many kills and restarts, it ended up being something wrong with the USB cable. Changing it solved the problem, tho I have no clue why this could happen.
I was getting the same error until I edited sudoers. You can get path of your platform-tools and tools folder of android SDK and type :
add complete the path there and enjoy.
as suggestend by trojanfoe is worth trying, but i guess, you did some restarts in between anyways.
Did you try to restart the adb server BEFORE you usb-plug your device? That helped me out.
I always run adb as root the first time, and as normal user thereafter. But I run a virtual machine that I suspend so I don't have to do it often.
ou have the right idea, the solution is most definately that you need the permission in the file within rules directory. The only suggestion I can make is that you are using the wrong vendor id.
Look it up here
Also, to make sure you're running the correct adb under root, run both of:
before:
I have found just running the one doesn't always work.
As a temporary workaround you could try starting the adb daemon as root:
sudo adb kill-server sudo adb devices
This worked for me until I managed to get udev set up properly.
Until Ubuntu 10 LTS the correct command is simply copying the adb which comes with the Google SDK, to /bin directory, insert the line according to your device in
Then restart udev and adb
It seems to change in Ubuntu 11, also, there is probably a possibility to make Ubuntu read any file you specify .rules, I just don't know how yet.