ben75
ben75

Reputation: 28706

Attach Android debugger to a running process with IntelliJ 13

Is there a way to attach Android debugger to a running android process with IntelliJ 13. It seems to be possible when running DDMS + eclipse (reference here).

I can't find a way to do that with IntelliJ. If I start DDMS from within IntelliJ (Tools > Android > Monitor (DDMS included) ) :

I guess that DDMS is expecting to find an eclipse workspace somewhere. But is there a way to make it working with IntelliJ ?

Upvotes: 3

Views: 2273

Answers (1)

Martin Konicek
Martin Konicek

Reputation: 40904

Under the Run menu, there's an option Attach debugger to Android process.

It works correctly for me: I can attach the debugger to the process and it stops on breakpoints.

Upvotes: 2

Related Questions