0

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?

Seva Alekseyev
  • 59,826
  • 25
  • 160
  • 281

1 Answers1

0

My way to do it (and it works) : is to copy manualy your libs from "obj/local/armeabi/" to " libs/armeabi/" and then create your apk (using ant debug).

medazzo
  • 99
  • 5