Reputation: 49
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
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
:
Upvotes: 1