CoDe
CoDe

Reputation: 11146

Getting "com.android.ddmlib.AdbCommandRejectedException: closed" Exception?

When I run application it show me "com.android.ddmlib.AdbCommandRejectedException: closed" Exception.

Any body have any idea why this is occurring and how can I resolve it.

Upvotes: 6

Views: 6848

Answers (3)

Nikolay Elenkov
Nikolay Elenkov

Reputation: 52936

Your adb server might have died. Try restarting it:

adb kill-server
adb start-server

Upvotes: 4

Shivanand Darur
Shivanand Darur

Reputation: 3224

Just reset the adb(In ur eclipse go to DDMS perspective. In devices tab click on the down arrow-> reset adb).enter image description here

Upvotes: 25

stipe108
stipe108

Reputation: 1650

I ran into this same problem and tried a variety of things. Not sure exactly which one solved it.

I tried "adb kill-server and adb start-server" and that did nothing. I was able to adb shell into my device and use logcat from terminal, but Eclipse would still not work.

Tried restarting just Eclipse and that did nothing.

Rebooted computer and rebooted phone. Went into Settings->Applications->Development and Turned Debugging off and then back on. Then it showed up correctly in Eclipse and I can see the logcat.

Upvotes: 2

Related Questions