ADB not responding. You can wait more,or kill “adb.exe” process manually and click 'Restart'

后端 未结 20 1024
刺人心
刺人心 2020-12-02 15:36

I have installed Android Studio. Then I have updated the Android SDK. Now when I start Android Studio, this message pops up:

ADB not responding. You c

相关标签:
20条回答
  • 2020-12-02 15:41

    If the above CMD command option is not working and you cannot make it work in any other way then follow this below.

    Click on below link

    http://adbshell.com/downloads

    and download the first link with name ADB Kits ( contains adb.exe and necessary .dll files).

    After downloading replace these files with the ones in the path

    Android/Sdk/platform-tools/

    Now click on adb.exe and it will open cmd and will start the adb server.

    Now it will detect the device and no problem. OOOOOllllaaaaa.....

    If the Problem persists again then do the same... save the folder somewhere.... just replace files... it will detect the device automatically then

    0 讨论(0)
  • 2020-12-02 15:43

    I ran into this problem and tried a number of solutions on my Mac without any success. I finally got to work with the commands below:

    $ rm -rf ~/.android
    $ killall adb
    $ adb devices
    

    Note that rm -rf ~/.android will remove any AVDs that you have configured, so don't take this step lightly. Personally I had to though and I'm not sure why. Hopefully this helps someone.

    0 讨论(0)
  • 2020-12-02 15:44

    If you need to kill all adb processes on windows with one command, you can do it as follows:

    taskkill /F /IM adb*
    
    0 讨论(0)
  • 2020-12-02 15:45

    I had this problem on Windows 8, but I solved the problem by updating all of Android Studio's plugins with the SDK Manager, then restarting the computer.

    0 讨论(0)
  • 2020-12-02 15:46

    Go to

    Tools > Android > (Uncheck) Enable ADB Integration (if studio hangs/gets stuck end adb process manually)

    then,

    Tools > Android > (Check) Enable ADB Integration

    0 讨论(0)
  • 2020-12-02 15:46

    Check if any service is listening on port 5037, and kill it. You can use lsof for this:

    $ lsof -i :5037
    $ kill <PID Process>
    

    Then try

    $ adb start-server
    * daemon not running. starting it now on port 5037 *
    * daemon started successfully *
    

    This solved my problem.

    0 讨论(0)
提交回复
热议问题