Generally, all native libraries built for release version are stripped that are used in Android Application. Suppose we now get a crash from an App downloaded from Playstore and we get the backtrace from log cat using adb. Running ndk stack using the stripped library will not give us the file number and name info since symbol tables are missing. Is there any alternative to get the correct backtrace even if the library is stripped and built for release version?
I knw there are couple of options provide at How do I obtain crash-data from my Android application? , but my question is more towards getting stack trace from stripped libraries. I might not be surprised if there are no alternatives since symbol table is must to get correct stack trace. Any Pointers?
Absent libraries mean absent references. Your only option is to ship your app with the libraries you suspect to be the cause of the problem and see if you can trace it from there. Good luck.