Reputation: 779
When Eclipse with ADT exits, adb.exe keeps running. Is there some Eclipse configuration setting to make sure adb.exe exits when Eclipse exits?
Environment: Windows 8.1, Eclipse adt-bundle-windows-x86_64-20140321.
This is an issue when when switching between Eclipse and Android Studio. To avoid all sorts of error messages, this is what I have to do: [1] Kill first app (say Eclipse) [2] Manually kill adb.exe in Task Manager [3] Start second app (say Android Studio).
Upvotes: 1
Views: 367
Reputation: 16142
AFAIK adb is a client-server system; it keeps a server running even if noone is connected to the device. You can issue the command adb kill-server to force it to shut down, but Android Studio should automatically detect the adb server process that is already running. Do you have 2 ADT installations?
Upvotes: 1