Skip to content Skip to sidebar Skip to footer

App Crashed Even After Catching Signal By Google_breakpad?

Google breakpad catches signal (about crash in native code via JNI) but the app still dies after it. What should be done in order to prevent it? log: 03-08 15:04:13.398: ERROR/NATI

Solution 1:

In some cases, there is no way of preventing your app from crashing, even if you use Breakpad or CoffeeCatch.

However, you will be notified before the crash occurs. You can use that time to warn the user about what is happening (a fatal error) and what will happen next (the app will force close).

Post a Comment for "App Crashed Even After Catching Signal By Google_breakpad?"