Salv0
Salv0

Reputation: 1077

Terminate debug on device

I'm a bit confused about debugging on a device. When I use the emulator, after the debug session, I simply close the emulator window... but when debugging on my device, how can I close the session??simply disconnecting the USB cable?

And the installed .apk ( installed by Eclipse ) should be removed manually?

Upvotes: 5

Views: 1759

Answers (2)

Kevin Coppock
Kevin Coppock

Reputation: 134714

You can do this by going to the Debug perspective, right clicking your application, and selecting "Disconnect" or "Terminate".

alt text

Upvotes: 6

Dave
Dave

Reputation: 6104

As soon as you disconnect, the debug session is terminated.

Any APKs installed during debugging must be removed manually, since technically they're not part of the debugging process.

Upvotes: 1

Related Questions