[Android] adb devices cannot find the solution for the device driver

It is inevitable that you will encounter some problems when using it for the first time, or after changing the computer, follow the instructions on the Internet to execute the command adb devices and cannot find the device. What should I do? Next, I will explain in detail.

USB debugging

First, make sure that a notification pops up on the phone connected to the computer via USB to indicate that debugging mode is enabled.
insert image description here

check problem

Then, open the terminal on the computer and execute the command adb devices, the result may be as follows, the problem is this
insert image description here

There is nothing displayed, think about where the problem is

device manager

Open the device manager on the computer, as shown below
insert image description here

When connecting the mobile phone, you will find that there are more other devices , and the ADB Interface is displayed! Exclamation point, indicating that there is a problem, the driver of the connected Android device has a problem,

device driver

There is a tool USB Driver for Android that can solve the problem,

You can go to ADB Download to find it,

Download the ADB Driver Installer, double-click to run it, and click the Install button to install the device driver. The installation is correct as shown in the figure below
insert image description here

Test Results

Finally, go to the terminal and enter the command adb devices to test it, and if it shows that the connected device is normal, OK.

Please add a picture description

Guess you like

Origin blog.csdn.net/zs1028/article/details/131726329