Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you Disable DDMS in Eclipse

Tags:

Does anyone know if it is possible to disable the DDMS in Eclipse? By that I mean DDMS should not being start when Eclipse is launched.

I'd like to use only the DDMS from the terminal, but when I start it it keeps saying:

Could not open Selected VM debug port (8700). Make sure you do not have another instance of DDMS or of the eclipse plugin running. If it's being used by something else, choose a new port number in the preferences.

I like the standalone DDMS better than the one that is built in to Eclipse, mostly because it is far easier to switch between DDMS and the source code that way. And, I feel it's being put too much into the same program when DDMS is run as a plugin to Eclipse. Also, as DDMS is quite unstable and crashes a lot, its easier to restart only DDMS and not having to restart the "not-so-fast" Eclipse.

like image 696
Eric Nordvik Avatar asked Mar 23 '11 14:03

Eric Nordvik


2 Answers

You have to start DDMS before you start Eclipse.
Also, set the debugger port to something like 32767 in Eclipse.
Go to Window -> Preferences -> Android -> DDMS and set Base local debugger port to 32767.

like image 183
Apoorva Iyer Avatar answered Oct 07 '22 02:10

Apoorva Iyer


The ADT plugin depends on the DDMS plugin. Even if you (Help > About Eclipse SDK > Installation Details) uninstall the DDMS plugin it will still try to connect to the device.So, You can remove both or none of them.

First In First Served. The first DDMS instance will get the connection and the other will still continue complaining.

like image 27
xpapazaf Avatar answered Oct 07 '22 01:10

xpapazaf