1

I have an APK and have run it on Android device. Can I debug it without compiling it? For example, use Android Studio's attach to the process function? I'm interested in breakpoints debugging

Max Koretskyi
  • 101,079
  • 60
  • 333
  • 488
  • Last I checked, it's even possible to extract all Java code from APKs, so it should be possible. See http://stackoverflow.com/questions/12732882/reverse-engineering-from-an-apk-file-to-a-project – arekolek Mar 11 '16 at 16:04

1 Answers1

1

Yes You can. Using debug apk you can find memory traces in DDMS.

  • thanks, but for that I'd need apk to be built as debug, correct? and I'm also interested in breakpoints debugging - is this possible? – Max Koretskyi Mar 11 '16 at 15:45