Flurry Error Reporting for Android

前端 未结 6 1663
慢半拍i
慢半拍i 2021-02-09 14:37

Is there anyone using Flurry to generate reports for uncaught exceptions that could post some sample code on how to do this?

I don\'t see any example via Flurry themselv

6条回答
  •  悲哀的现实
    2021-02-09 14:42

    Flurry does it automatically (if you have it running). However, the error reporting is lame. They only catch the message w/o giving you the stack trace, so you may end up seeing (for example) that people are getting lots of NullPointerExceptions, but you won't have any idea where, or how, they're happening. If you try to do it yourself with the FlurryAgent.onEvent() method you'll quickly discover that they limit you to 255 characters.

    If you need detailed error reporting it really is better to roll your own right now.

提交回复
热议问题