I wrote some video streamer (C++
) on PC and now I try to to implement the same cross platform section on Android. I "played" enough with NDK
and know a bit about how to compile and integrate C
code with Android (aka JNI).
The problem is that sometimes my application crashes and as you know Android doesn't point me where code failed (in C/C++ part).
Video Streamer code have a lot of libraries and, lets say, open source parts I used so to leave logs - not good idea. I use Eclipse, how can I debug C++ code or does Eclipse have any plugins to debug?
Thanks a lot,