Alkis
Alkis

Reputation: 49

How can I use Eclipse without the Android Debug Bridge?

I'm building a Java project with Eclipse and I get the common error "Sending Tracking request failed", which is discussed in ADB Crashing in Eclipse. However, I wonder ... Why should Eclipse get ADB involved even for non-Android projects, just because it is configured with ADT plugin? My actual question: Can ADT/ADB be disabled when working with non-Android projects?

Upvotes: 1

Views: 61

Answers (1)

Kai
Kai

Reputation: 15476

One way to do it is by separating your Android and non-Android projects into two workspaces. After which ADT can be disabled by: Window --> Preference to get into preference window, then go to General --> Startup and Shutdown and deselect Android Development Toolkit:

enter image description here

Upvotes: 1

Related Questions