Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ADB is not recognizing my device

This is not like other questions:

I already have installed:

  • ADT
  • Samsung Kies 3 (because I have a Samsung Galaxy S5)
  • Google USB Driver

I already have configured:

  • Developer options in my device enabled
  • USB Debugging enabled

My computer and Kies recognizes my device, but adb doesn't!

I'm using Windows 7 Professional 64-bits

Could anyone help me, please?

like image 944
Antonio Avatar asked Jun 17 '14 13:06

Antonio


People also ask

Why my device is not showing in ADB devices?

On Android 5.0, go to Settings -> Storage -> menu -> USB computer connection and make sure 'Media device (MTP)' is disabled. When it's disabled 'adb devices' lists the device, when enabled not.

How do I fix ADB is not recognized?

Set the path of adb into System Variables. You can find adb in "ADT Bundle/sdk/platform-tools" Set the path and restart the cmd n then try again. You can also goto the dir where adb.exe is located and do the same thing if you don't wanna set the PATH.

Why is adb not working?

Failed ADB connections usually have one root cause: bad Android USB drivers that load in place of the right ones. Windows doesn't make it easy to remove the wrong drivers, unfortunately. But before attempting to troubleshoot an ADB connection, first enable USB debugging on your phone if it's not on already.


1 Answers

The problem was that windows does not recognize the device driver, therefore is needed install it manually. The way I solved this:

1. Open Device Manager and locate your device under “Other devices”. enter image description here

2. Right click on your device and then click on “Update driver software”.

3. Now click on “Browse my computer for driver software” option. enter image description here

4. In next screen, click on the option “Let me pick from a list of device drivers on my computer”.

5. Now select “Show All Devices” option and click the next button.

enter image description here

6. Now click on “Have Disk…” button. A window will pop up, click the browse button and browse to following location: D:\android-sdk-windows\extras\google\usb_driver and select android_winusb.inf file.

Note: If you installed / extracted the Android SDK to a different location, browse to that location instead of D:\

7. In next screen, select “Android Composite ADB Interface” and click the “Next” button.

enter image description here

8. Confirm installation by clicking “Yes” and “Install” if you see any warning messages appear in Windows.

9. Android ADB drivers on Windows will now be installed for your device. You will see a confirmation message.

SOURCE:

I took this solution from the following link. I started from step 7:

http://donandroid.com/how-to-install-adb-interface-drivers-windows-7-xp-vista-623

like image 175
Antonio Avatar answered Oct 05 '22 14:10

Antonio