Search code examples
androidandroid-studioandroid-ndkshared-librariesndk-stack

Need help tracing crash


I am trying to fix a fatal crash 11 error that occurs within my application. I was able to use logcat and ndk-stack to trace it to art_quick_instrumentation_entry at crtbegin_so.c:? within /apex/com.android.art/lib/libart.so. But from there I am not sure how to go about trying to fix this. Attempting to open the file in a text editor or in Android Studio gives me a bunch of non-readable gibberish.

Any ideas on how I can go about trying to fix this?


Solution

  • Figured it out. Turns out it was related to a dialog popup within a menu. Moved the dialog to fire outside of OnOptionsSelect and it works fine.