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

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

    If you are suffering from "ADB not responding. If you’d like to retry, then please manually kill ‘adb’ and click ‘Restart’ or terminal appear Syntax error: “)” unexpected" then perhaps you are using 32bit OS and platform-tools has updated up 23.1. The solution is to go back to the platform-tools 23.0.1.

    You can download the platform-tools 23.0.1 for Linux here , for windowns here and Mac here

    After the download, go to your sdk location > platform-tools folder to delete old platform-tools in sdk and paste down into the downloaded one.

    Woohooo ... it should work.

    This is a bug with latest ADT.

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

    I run netstat -nao | findstr 5037 in cmd.

    As you see there is a process with id 3888. I kill it with taskkill /f /pid 3888 if you have more than one, kill all.

    after that run adb with adb start-server, my adb run sucessfully.

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

    This issue could be because adb incompatibility with the newest version of the platform SDK.

    Try the following:

    1. If you are using Genymotion, manually set the Android SDK within Genymotion settings to your sdk path. Go to Genymotion -> settings -> ADB -> Use custom SDK Tools -> Browse and ender your local SDK path.

    2. If you haverecently updated your platform-tools plugin version, revert back to 23.0.1.

    Its a bug within ADB, one of the above must most likely be your solution.

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

    1.if your phone system is over 4.2.2 , there will be enter image description here

    2.disconnect the USB and try again or restart your phone

    3.After after all try , it didn't work. It may be a shortage power supply so try other usb interface on your computer.

    I solved the problem doing the first step . anyway have try.

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

    An another one: you might want to avoid running Eclipse and Android Studio together, it helped me.

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

    From the command prompt run the command adb kill-server. This will shutdown ADB and android studio or Eclipse if you were to use that, would show Waiting for ADB as you said.

    Once ADB has shutdown down run adb start-server or run adb devices which will automatically start the adb service and show that your android emulator or development devices has successfully connected.

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