I'm Using Android studio 2.2 and Android.mk file followed this
c++ files located inside Android module and not in the calling application. I added to the module the following:
externalNativeBuild {
ndkBuild {
path 'jni/Android.mk'
}
}
there are no errors when I build the project and I can add breakpoints in my java files, but I keep getting No symbol directories found when I try to attach native debugger. when I don't get the error the debugger never stop in any breakpoints inside c++ module files.
I'm using buildToolsVersion "25.0.0", I saw this https://code.google.com/p/android/issues/detail?id=202611 still the same error
any idea how to overcome this?