ivanarh / ndcrashdemo

Demonstrates NDCrash library usage by JNDCrash java wrapper. Includes JNDCrash as as submodule. Don't forget to run git submodule update --init --recursive after checking out.
Apache License 2.0
6 stars 0 forks source link

not human-readable report format? #1

Open zhouchuanping opened 6 years ago

zhouchuanping commented 6 years ago

I have cloned this project and all submodule.I run this demo and choose a crash in Crash Application,but i get a report which is not human-readable report format. I must use ndk-stack to compate it. Is is right? Forgive me bad english.

ivanarh commented 6 years ago

Could you provide an example of your report? By "human-readable" in the documentation I meant that you can read a report without an additional processing. For example, you can read names of functions in stack trace and determine a reason of a crash. ndk-stack only helps you to bind stack trace entries to your source code. It's not obligatory to use it and sometimes it's impossible: it requires libraries with debug symbols. Please read https://developer.android.com/ndk/guides/ndk-stack

Alternatively, google breakpad uses not human-readable binary report format called minidump, here you need to call a special tool minidump_stackwalk to read it.