3

I am building a native android application. To get crashes I am using ACRA 4.5 with Native-Crash-Handler as suggested on ACRA's Advanced usage page for catching the native crashes. It works fine when I run it in SILENT mode. But if I use DIALOG or NOTIFICATION mode, on a native crash, the app keeps on crashing with the same exception everytime I click the OK button and fall in an endless loop. Does it work for anybody or is it just a limitation here?

avalancha
  • 1,457
  • 1
  • 22
  • 41
rohitwali
  • 57
  • 1
  • 7

1 Answers1

1

https://github.com/SalomonBrys/Native-Crash-Handler

Have you noticed that the project is discontinued?

"Moreover, the use of this library usually makes matter worse when the app crashes inside a thread : The Android system tries to restart the faulting activity making the app having an infinite crash loop."

Zachary
  • 127
  • 1
  • 2
  • 15
  • 1
    No I didnt notice and I did encounter the bug. :) Although, there is fix for that in API level >= 14 using the lifecycle callbacks, I eventually ended up NOT using the library at all. – rohitwali Mar 26 '14 at 10:12