I have an Android NDK library. It crashes on the device, gives me the crash address (0x80C44F3E). The way I build it, there are debug symbols for the relevant part of the code. The copy of the library that I've got in (myproject)\obj\local\armeabi
is almost 1MB larger than the library that goes into (myproject)\libs
. I fugure, it's unstripped.
Can I use the unstripped library to translate the crash address into source/line? How exactly?