Reputation: 6697
I'm using Intellij IDEA 12.0.2 on Windows 8 and I have problem with debbuging apps. I can't run my application on phone or emulator because all the time I'm getting alerts: Waiting for ADB or ADB is not resonding.
I tried: restarting IDEA killing adb.exe killing and starting server editing run configuration launching IDEA as administrator
Nothing works. How can I fix this issue?
Upvotes: 0
Views: 2226
Reputation: 1
First I run the command "netstat -ano | findstr "5037" to find the program which use the port 5037. Then use "taskkill /F /PID xxxx" to kill that program.
"adb start-server " to start the adb server.
Last ,restart your Intellij Idea.
I just put the solution in my blog enter link description here
Upvotes: 0
Reputation: 6309
I had similar problem.The cause was that I have a utility software already running adb. Uninstalling that software fixed the problem.
Upvotes: 0
Reputation: 1
You can also try running IntelliJ as administrator - worked for me at once.
Upvotes: 0
Reputation: 454
Check to make sure that your platform tools are up to date, I've heard that this was very common on versions less than revision 18.
Upvotes: 0
Reputation: 1246
Try disabling your firewall or any other A/V solution you may have.
Upvotes: 4