Phone isn't recognized by ADB

前端 未结 4 1906
悲哀的现实
悲哀的现实 2020-12-21 01:02

this whole thing is a nightmare, at least in windows. I had my phone connected and everything was ok. I have a Samsung Galaxy, I\'ve installed the USB driver and it was okay

相关标签:
4条回答
  • 2020-12-21 01:34

    Have you also tried to change the USB socket in which you plugged the USB cable?

    Sometimes one thinks about unplugging/replugging, but not about changing the USB socket in which to plug the cable. All the more since it is correctly recognized by Windows.

    I had the same symptoms (Windows recognizing my Samsung Galaxy, but not ADB), and changing the place where I plugged the USB cable did worked for me.

    0 讨论(0)
  • 2020-12-21 01:36

    Make sure your phone's SD card isn't mounted as a drive on your Windows machine. Whenever that happens to me, I can't connect via adb.

    0 讨论(0)
  • 2020-12-21 01:43

    I ve seen multiple times this problem and there is no common answer. i'll make a list of solutions that I have seen across severals forums:

    • Restart ADB server with the following commands: adb kill-server and then adb start-server

    • Change the USB cable you are using: I've seen a lot of complaints about Samsung's USB cable.

    • Change the USB socket you are using

    • Try to reinstall the drivers (for instance, for Samsung devices, installing Kies; this solved the problem for me)

    • Try to reboot your phone

    • Unset the debug mode on the device and set it again

    Adb seems to often cause troubles, not the best piece of software I've seen!

    0 讨论(0)
  • 2020-12-21 01:46

    Have you tried restarting the adb server?

    Run:

    adb kill-server    
    adb start-server    
    adb devices
    
    0 讨论(0)
提交回复
热议问题