Restart ADB from Android Studio

前端 未结 3 760
走了就别回头了
走了就别回头了 2020-12-13 04:39

I previously developed on Eclipse and just migrated to Android Studio. Everything works fine, it\'s better and faster.

I work on real device, and Android Studio reco

相关标签:
3条回答
  • 2020-12-13 05:18

    that did trick for me thanks. resetting adb on android studio fixed my issue of ADB not responding. If you'd like to retry, then please manually kill "adb.exe" and click 'Restart'. spent 2 days trying look for solution to this

    0 讨论(0)
  • 2020-12-13 05:20

    Apart from the above working answer, the ADB can also be restarted during the restart of Android Studio ( File > Invalidate Cache / Restart > Just Restart ).

    ADB is down for a reason, therefore a clean restart of Android Studio is suggested.

    0 讨论(0)
  • 2020-12-13 05:30

    What I usually do when I get this error is restarting the adb server by typing in the command into Terminal:

    adb kill-server
    adb start-server
    

    However this can be achieved in Android Studio. Clicking the Monitor button you can launch the same program you have referenced from Eclipse.

    Monitor


    monitor 2

    If you do not see this you may need to update your Platform Tools from the SDK Manager button.

    enter image description here

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