Encountered a problem description:
Run the Android console output
[2013-10-13 16:45:50-] The connection to ADB are down, and a severe error has occured.
[2013-10-1316:45:50-] You must restart ADB and Eclipse.
[2013-10-1316:45:50-] Please ensure this adb is correctly located at ' <--here shows the full path of adb.exe--' and can be executed.
problem Analysis 1:
Close Eclipse, open Windows Task Manager, and see if there are Adb.exe or Adb.exe *32 in the process.
Solution 1:
If there is, close the process and restart eclipse;
Problem Analysis 2:
The Adb.exe or Adb.exe *32 process cannot be found in Windows Task Manager, you can try to start adb.exe manually, or if the adb.exe process is not found after manual startup, the Only one possibility is that the port of the Adb.exe process is occupied, causing Adb.exe to fail to start properly (ADB default port is 5037).
Solution 2:
1. Check Port usage:
Netstat-aon|findstr "5037"
TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 5004
2. Find 5004 occupy 5037 port, view 5004 task:
Tasklist|findstr "5004"
Wandoujia_daemon.exe 5004 Console 1 4,276 K
Open the Windows Manager end Wandoujia_daemon.exe The process, start eclipse, if Adb.exe fails to start, start manually;
Please ensure this adb is correctly located at ... Problem Solving Solutions