How can I debug JNI code on my device! I enable debugging and Im able to successfully set break points in Java and able to debug using Eclipse.

But when it comes to my JNI C/C++ code I can't debug! Eclipse doesn't get no feedback on the breakpoints that I set.

Please help!

ps: Im using Android SDK 2.3.4, NDK r5b on MacOS Snow Leopard

link|improve this question

31% accept rate
You can always start by including <android/log.h> to allow use of similar functions to the Log java class. This way you can at least get output in logcat. – Maximus Jun 9 '11 at 5:27
Also found this with the magic of google... eclipse.org/sequoyah/documentation/native_debug.php if you use Eclipse. There is also information on using ndk-gdb in the documentation included with the ndk. – Maximus Jun 9 '11 at 5:33
I've seen this one but its only for debugging with the emulator... I need to debug C/C++ code on the device. – McBob Jun 9 '11 at 5:44
feedback

1 Answer

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.