Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse detecting the same device multiple times

I am facing a strange problem. The eclipse is deteting the same device multiple times and thus is unable to run the project showing error as :

Failed to install MetRoute.apk on device 'EC21BF384504FC4E': adb rejected install command with: more than one device
com.android.ddmlib.AdbCommandRejectedException: more than one device
Launch canceled!

See This image:

enter image description here

I tried to take help of this question but no help after following the process. Does anyone have any other solution.?

like image 986
Akshat Avatar asked Dec 19 '13 11:12

Akshat


3 Answers

update : It is not needed to restart/close Eclipse

As told in comments by Ved Praksh, the solution is:

Exit Eclipse

End all adb processes from task manager as well.. Then:

In cmd, adb kill-server --> adb start-server --> adb devices

Then restart eclipse.

Most probably it will show only one device this time.

like image 70
Akshat Avatar answered Nov 10 '22 12:11

Akshat


In windows start task manager >>> Processes Tab >>> Right click adb.exe*32 >>> End Process and Press End Process on the dialog box.

enter image description here

like image 24
zizutg Avatar answered Nov 10 '22 14:11

zizutg


Try

./adb kill-server
./adb start-server
./adb devices (This should show your device exactly once)

and it should work.

And also restart Eclipse after this.

like image 1
Aniket Thakur Avatar answered Nov 10 '22 12:11

Aniket Thakur