Android running error

3.5k Views Asked by At

I have been facing a real strange problem. I have installed and used android many times and even now using it on my desktop. But there's a problem when I try to install it on my laptop. Everything is installed fine but when I install the ADT and then restart eclipse this error occurs, where it says something like adb error.

DeviceMonitor]Connection attempts: 1
DeviceMonitor]Connection attempts: 2
...
DeviceMonitor]Connection attempts: 600

I am using windows 7 64x and eclipse indigo (I have tried with other versions too) and my network card is a killer wireless n series. Has anyone faced this kind of problems before?

2

There are 2 best solutions below

1
On BEST ANSWER

It's due to fact that Win7 prefers to return IPV6 address for localhost. The Solution is to force Eclipse IDE to use IPV4. See here how to do that: https://stackoverflow.com/a/11327411/1363296

3
On

Your ADB must be restarted restart adb server using following command in command prompt

adb stop-server
adb start-serevr

It will solve your issue.