Connection with adb was interrupted You may want to manually restart adb from the Devices view

后端 未结 7 1518
逝去的感伤
逝去的感伤 2021-02-06 11:01

I am using Windows 7 and JDK 6.

I downloaded the package of Android SDK with Eclipse and followed the instructions to create the first Hello World application.

H

7条回答
  •  情话喂你
    2021-02-06 11:31

    Here are followed list of options what you can do to try to fix that issue:

    • Run: adb kill-Server , after adb start-Server
    • Try to disable and after set enable USB debugging on device. While doing that pulling out the USB cable and putting it back in also helps.
    • Just wait, sometimes it happens if it up slowly and Eclipse drop this error.
    • Try to kill adb.exe through Task Manager. It will restart by different way.
    • You can try to up performance to your Eclipse (mostly for Android):

      open eclipse.ini and set:

       -Xms128m        
       -Xmx512m         
       -XX:MaxPermSize=256m`
      
    • try to disable firewall

    • Uninstall previous versions of JRE or JDK (if you have ones in additional to new that you currently use). After, restart Eclipse
    • Does DDMS see your emulator? Try to restart adb through DDMS
    • Also add (if still you didn't) ADB to global path: My Computer -> Properties -> Advanced System settings -> Environment Variables -> press New... name: ADB; value: \platform-tools. after add to path %ADB%

提交回复
热议问题