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

后端 未结 20 1025
刺人心
刺人心 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:58

    I had this problem on Windows 7. My situation is this through SDK Manager. I only download API 19 but I had not downloaded related Android SDK build-tools. So it occur this problem.

    I went through SDK Manager download build-tools 19 to fix it. Hope to give you help.

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

    For me, on Windows 7, killing the ADB server and restarting it via command line did not help. It would not start up successfully.

    >adb kill-server
    
    >adb start-server
    * daemon not running. starting it now on port 5037 *
    ADB server didn't ACK
    * failed to start daemon *
    

    So killing the adb.exe process via Task Manager was actually the easiest solution that case.

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

    I had the same problem. I have restarted ADB in any possible way, I have killed the process and restarted the PC with no results.

    Then I found this plugin. Just download and install it in your Android Studio IDE. Under Tools -> Android you have a menu ADB Idea. Here you can kill, start, restart, clean ADB.

    0 讨论(0)
  • 2020-12-02 16:01

    Faced this issue on Mac:

    I have tried different solution, But below works for me -

    1. Uninstall "Vysor" plugin if you have installed for Chrome
    2. Under Home folder > find .Android folder and move to trash
    3. Goto, Android sdk > delete/move to trash platform-tools folder
    4. Again install/download from Android SDK Manager
    5. Open terminal -
      • adb kill-server
      • adb start-server
    6. Check adb devices, It will work and display you all connected devices.

    Hope it helps !

    0 讨论(0)
  • 2020-12-02 16:03

    I had this problem and solved it by this way... I had a app in my pc that used adb... I tried to disable it but still my android studio's adb had problem after unistall that application and problem solved.

    0 讨论(0)
  • 2020-12-02 16:07

    None of the above helped me completely. Although Oventoaster made me think. I had a couple of adb on my system. Removed them almost all.

    I am running android studio on ubuntu 14.04 64 bit.

    So I checked manually /home/xxxxx/Android/Sdk/platform-tools/adb

    where xxxxx was my linux username

    this gave

    /home/xxxxx/Android/Sdk/platform-tools/adb: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory

    https://stackoverflow.com/a/27415749/4453157

    solved it for me.

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