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
Asked
Active
Viewed 67 times
1

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 Answers
1
Yes You can. Using debug apk you can find memory traces in DDMS.

AndroidEnthusiastic
- 941
- 9
- 22
-
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