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

前端 未结 10 626
礼貌的吻别
礼貌的吻别 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:24

    you need platform-tools_r23.0.1-linux.zip . Url for it from google's repository is:

    https://dl-ssl.google.com/android/repository/platform-tools_r23.0.1-linux.zip

    Go into your android-sdk-linux directory, I deleted the platform-tools directory (but I think that's unnecessary) and unzip'ed the platform-tools zip there. The SDK updater correctly shows 23.0.1 is installed at this point.

    all will work properly

    one can find detailed discussion about this issue here

    0 讨论(0)
  • 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 <process id>
    
    0 讨论(0)
  • 2020-12-15 22:31

    Here is what worked for me on Ubuntu: I simply removed the file /tmp/adb.log

    sudo rm /tmp/adb.log
    

    Hope it helped. Cheers.

    0 讨论(0)
  • 2020-12-15 22:32

    I didn't find adb.exe in the task manager so i did the following and it worked fine after that

    1. I closed the emulator and removed my phone.
    2. restart the windows.
    3. connect the usb device and then i run the application.
    0 讨论(0)
提交回复
热议问题