Questions tagged [ndk-stack]

10 questions
14
votes
1 answer

How to use ndk-stack step-by-step?

I'm trying to debug this error: 01-12 13:38:18.068 275-275/? I/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 01-12 13:38:18.068 275-275/? I/DEBUG: Build fingerprint:…
Mohsen
  • 2,121
  • 3
  • 18
  • 25
4
votes
1 answer

Cannot symbolicate native Android Flutter crashes

From the release of my Android Flutter app, I've been struggling with native unsymbolicated crash logs in my Fabric/Firebase Crashlytics dashboard. These are not random crashes and not specific to any OS or Device. Also this is not a startup crash,…
3
votes
1 answer

How to symbolicate libapp.so stack trace in Flutter?

In Google Play console, sometimes I see crash reports like this: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** pid: 0, tid: 0 >>> com.blackoutage.game <<< backtrace: #00 pc 00000000003080f0 …
raver
  • 263
  • 6
  • 14
1
vote
0 answers

How to use ndk-stack in Android Studio?

I need to debug my native C code. (I'm a newbie in C and ndk). I get this error, but i don't know exactly from where the bug come from: signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x38 I find some tool to do that, but the documentation is…
1
vote
1 answer

How can native-debug-symbols be used with ndk-stack?

Using ndk-stack with the libraries, generated in ./build/intermediates/cmake/release/obj/arm64-v8a/ for example, I am able to get debug information, including line numbers. However gradle 4.1.0 and above has the option to generate…
1
vote
1 answer

NDK stack trace on Windows 7

I'd like to analyze stack trace from Android NDK. How do I read it on Windows machine, please? I know there is a python script but I have a hard time to run that on Windows 7.
codereviewanskquestions
  • 13,460
  • 29
  • 98
  • 167
1
vote
0 answers

How to debug mapbox crash

I have a redundant crash with mapbox library com.mapbox.mapboxsdk:mapbox-android-sdk:6.1.1 On the logcat I got this stack: pid: 4960, tid: 4960, name: [...] >>> [...] <<< signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x8 r0 00000000 r1…
Antoine44
  • 11
  • 3
1
vote
1 answer

Where are obj files for ndk-stack in androidTest packages

I'm implementing a few instrumented tests for a module (which is packaged in a aar archive, not apk) library I'm working on. The module is written partially in Java and partially in C. Sadly a crash is occurring while running my tests and executing…
fredmaggiowski
  • 2,232
  • 3
  • 25
  • 44
0
votes
1 answer

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…
0
votes
0 answers

ndk-stack xamarin Fatal signal 11

My app is closing when do certain action, I use adb logcat to get the log trace, searching out I found this, Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 27798..... I'm trying to use ndk-stack to know about the error but I have no idea…