I am developing an Android library with native code. This library project is added as a library in an application project.
I would like to debug the library when the application project is using it.
I am pretty sure the settings in the library (makefiles, build command, compiler options) project are ok because I tried the debugger from within the library (I created a dummy Activity and unset "library") and it worked. I am also aware of the delay that might occur because of the time needed to load the dynamic library and I don't think it's the issue for the same reason.
In the Application project, I just added native code support set the build command as ndk_build NDK_DEBUG=1
, but it never stops at breakpoints. Any idea would be greatly appreciated