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

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

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

    $ lsof -i :5037
    $ kill 
    

    Then try

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

    This solved my problem.

提交回复
热议问题