Home > Android

ADB error device not found

a nice image
By Genesis and SheilaUpdated on June 4th, 2022

What is error message 'ADB device not found'?

ADB device not found is an error that usually occurs when there is a problem with your ADM device driver. ADB, which stands for Android Debug Bridge, is a command-line tool that lets you communicate with a device. In this instance, it would allow you to control a device over USB from your computer. When you see this error, it is most likely a problem with your driver.

How can you fix 'ADB device not found'?

Some of the solutions to this error include:

  • Installing the ADB driver
  • Updating the driver by using Device Manager
  • Creating a .bat file to restart ADB

Please see our in-depth walk-through solutions below.

1. Install ADB (Android Debug Bridge) Driver

"ADB device not found" may be caused by a missing Windows driver for your Android device. To enable ADB in your Windows, you are required to install the ADB driver. You are also required to enable unknown source and enable developer option to your Android phone so the Windows driver could get an authorization to access your Android phone.

Install ADB (Android Debug Bridge) Driver
Image Credit: genesismarasigan / ErrorSolutions.tech
  1. Go to Setting ==> Security ==> Unknown sources ==> Turn on.
  2. To enable Developer option, go to Setting ==>About Phone ==> look for Build Number. Tap the Build number 7 to 10 times, until you see a message "You are now a developer."
  3. Connect your Phone to the computer.
  4. Download and install ADB and Google Drivers from latest SDK. You can download 15 seconds ADB Installer, please see link https://drive.google.com/file/d/0B0MKgCbUM0itNVB1elljU2NPR0k/view.
  5. To run the installer, right-click 15 seconds ADB Installerand select Run as admin.
  6. Press Y to install ADB and Fastboot, and then press Enter.
  7. Press Y to install ADB system-wide, and then press Enter.
  8. Press Y to install Drivers and then press Enter.
  9. Restart your computer and try again.

If ADB and Google Drivers do not work, use Google to look for a compatible driver for your phone, by using your phone model + ADB driver as a keyword. Ex. ze551ml ADB driver.

2. Update driver using Device manager

“ADB device not found” may be caused by a missing Windows driver for your Android device. To fix it, install the driver using the device manager. Make sure to enable unknown source and enable developer (See solution 1 step 1 and 2).

Update driver using Device manager
Image Credit: genesismarasigan / ErrorSolutions.tech
  1. Click Windows Start, type in SDK manager.
  2. Right-click SDK manager and then select Run as Admin.
  3. Right-click Windows Start and then select Device manager.
  4. In the SDK manager expand Extras and then check the Google USB driver.
  5. Then, click Install package.
  6. When finished, right-click Windows start and select device manager
  7. From the list, select other devices.
  8. Right-click Android phone and select Update driver software.
  9. Browse "my computer" for driver software then choose "Let me pick from a list of device drivers on my computer", and then "Have Disk."
  10. Browser C:\Program Files (x86)\Android\android-sdk\extras\google\usb_driver and then click Ok.
  11. Then, Double-click on Android ADB Interface.

3. Create a .bat file to restart ADB

“ADB device not found” may also be a result of ADB software not responding. You may want to create a .bat file that could auto stop then start it again.

Create a .bat file to restart ADB
Image Credit: genesismarasigan / ErrorSolutions.tech
  1. Open Notepad.
  2. Write or copy and paste the code below.
    adb kill-server && adb start-server
    pause
  3. Save it as ADBautorestart.bat and set Save as type "All files (.)" to folder C:\Program Files\Android\android-sdk-windows\platform-tools.
  4. Then, run the .bat file if you need to restart your ADB.