ThreeBit
ThreeBit

Reputation: 628

How do I debug a pre-existing Android .apk with Eclipse?

I need to debug Android apps built with our makefile-based build system. Is there a way to get Eclipse to debug an existing .apk?

Recreating the source builds for these apps in the Eclipse IDE is impractical due to the number and size of them.

Upvotes: 3

Views: 6098

Answers (1)

mibollma
mibollma

Reputation: 15108

I'm assuming that debuggable is set to true in the manifest.

Attach: Select your process from the list and press the green debug icon at the top

Detach: Press the disconnect button in the debug perspective

Upvotes: 2

Related Questions