I want to debug and put breakpoints into my C++ library. My work space right now is like this:
/-Main App
/-Library1 (just Android library)
/-NativeLibrary
MainApp has included both libraries, Library1 and NativeLibrary, and I want to be able to put breakpoints into my NativeLibrary. I followed this post this post: https://stackoverflow.com/a/14483445 but when I try to select my MainApp as Project I can't do it.
So, how can I debug my own native library?