ADB not responding. If you'd like to retry, then please manually kill “adb.exe” and click 'Restart'

前端 未结 10 624
礼貌的吻别
礼貌的吻别 2020-12-15 22:05

I am a newbie and want to learn android. However, I face difficulties during installation of android studio.

I have installed android studio correctly but when I wan

10条回答
  •  离开以前
    2020-12-15 22:26

    You should first try stopping adb and then restarting it.

    Use this command:

    adb kill-server
    

    followed by:

    adb start-server
    

    On Mac OSX: If the adb process needs to be killed, you can use ps to show all processes with the following command, (pipe through grep to find it easier)

    ps aux | grep adb
    

    You can kill it with the following command, using the process id of adb from the previous ps command.

    kill -9 
    

提交回复
热议问题