I have the following situation. Due to some requirements, I have to extract some parts of our application into a separate AAR library. It looks like this:
Everything works as expected, but I have one problem, I can no longer debug my own C ++ - part. Both modules are compiled into DEBUG. It also does not help to set the LLDB symbol directory (in LIB_PATH / .externalNativeBuild / cmake / debug / ABI_XXX / CMakeFiles / native-lib.dir /). Setting the LLDB debug type also does not help.
When I return my library code to the main application, I can debug everything without problems.
Is it not possible to debug my own part of the AAR library? Or can someone tell me what I'm doing wrong?
source
share