ADB not responding. You can wait more, or kill “adb.exe” … windows 8

后端 未结 18 1356
灰色年华
灰色年华 2021-02-05 05:02

When I try to test my Android application with an android emulator as always I now suddenly get an error message. I\'m working with Windows 8. So far I tried the following thing

相关标签:
18条回答
  • 2021-02-05 05:24

    Looks like this could be caused by a bunch of different issues. This just happened to me because I had my android phone device plugged in for USB debugging, then after a few hours (and multiple android studio/phpstorm restarts) I had to do unplug the device manually. Things started working again after unplugging.

    0 讨论(0)
  • 2021-02-05 05:26

    I have faced this problem few days ago. When I opened my task manager it showing me two adb runnig. It may be because of I am using mobogenie for connecting my android phone for debugging application. This problem is because of moboginie and adt port conflict. then I have followed following procedure to sort out this issue.

    !) close eclipse 2) Go to task manager and kill all adb processes. 3) Now go to platform-tools in android sdk 4)press shift+right click mouse and select "open command window here" option 5) type

    adb kill-server adb start-server

    6)if server sucessfully started then start eclipse and then connect your phone (Remember dont connect your phone before starting eclipse)

    0 讨论(0)
  • 2021-02-05 05:33

    Try this,

    Open a command prompt with administration permission and type

    netsh interface tcp set global autotuninglevel=disabled

    This worked for me

    Edit: Windows only

    0 讨论(0)
  • 2021-02-05 05:36

    Meanwhile the emulator is working again. I cannot definetly say what solved the problem. What It could be a combination of two things:

    • Deleting the hidden ".android" folder under C:\Users... (Probably there was some malfunctioning automatically created code)
    • Deleting and recreating the Path variable to the folder with adb.exe ( ...\sdk\platform-tools\;)

    Finally it could be a Windows 8 issue which I don't understand.

    0 讨论(0)
  • 2021-02-05 05:36

    Uninstall HTC Sync. Or disable it somehow.

    0 讨论(0)
  • 2021-02-05 05:40

    Kill the adb.exe with a command prompt. Open a command prompt were your adb.exe is located and type adb kill-server

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