How to fix: Error device not found with ADB.exe
In cmd when I try to do the command:
adb shell
it shows device not found error. Can someone help me please. It'll be appreciated.
Solution 1:
Don't forget to go to your device and enable Settings->Developer Options->USB debugging.
Solution 2:
Try any of the following solutions. I get errors with adb every now and then. And one of the following always works.
Solution 1
Open command prompt as administrator and enter
adb kill-server
adb start-server
Solution 2
Install drivers for your phone if you're not testing on emulator.
Solution 3
Open android sdk manager and install "Google USB Driver" from extras folder. (attached screenshot)
Android SDK Google USB Driver missing
Solution 4
Go to settings > Developer Options > Enable USB Debugging.
(If you don't see Developer Options, Go to Settings > About Phone > Keep tapping "Build number" until it says "You're a developer!"
Enable USB Debugging
Solution 3:
It depends on windows system but usually:
- you go to system properties
- look at hardware devices
- Right click on the yellow (has to be yellow if it's driver problem) icon representing your mobile device
- select property
- Then go on the driver tab
- select update driver
- choose the bottom selection find on local computer
- then choose manually
- From the windows opened look for driver disk the bottom right button
- Choose the driver from the folder
<sdk>\extras\google\usb_driver\i386
(or amd64 for and). - Remember to uncheck the show only compatible hardware.
- Then choose the driver
- When windows warn your about possible incompatibility go on.
For my mobile it works, but depend on your mobile if it work or not.
Hope this help, bye.
Solution 4:
If you installed Eclipse have Android SDK, go to DDMS. If the list device display "?????????"
you do adb kill-server
and then adb start-server
.
Please make sure you install USB driver and enable debug mode.