Can I automatically disable adb since opening Eclipse?

I use Eclipse to develop both C and Java. I have an Android phone, and when I connect it to my computer, Eclipse (?) Automatically starts adb, although all Android projects are closed. Is there any way to prevent this?

Cause. I want to bind my phone using pda-net to my computer in order to use it as a modem. pda-net cannot connect if another adb process is running.

+7
android
source share
1 answer

Standard way

I think this is not possible in any standard way;) The best thing you can do is to have two "instances" of Eclipse (Eclipse does not perform a real installation, which you must extract to the directory so that you can have many Eclipses) and have one is eclipse for Java + Android and the other is for C.

This is not a real solution, but you will be able to work normally with the development of C.

Non-standard way

Maybe if you create a simple bat that does an β€œadb kill-server” and starts pda-net instantly, Eclipse won't be fast enough to restart the adb server before connecting to pda-net?

+1
source share

All Articles