Is there a way to have our own app to upload its crash repot?

前端 未结 4 1031
忘了有多久
忘了有多久 2021-01-27 22:33

Not sure if that is possible. But what happens is, sometimes our app randomly crashes. We don\'t know what exactly the problem is. Is there a way for us to get the crash report

相关标签:
4条回答
  • 2021-01-27 22:45

    It's the user who decides from Settings > General > About > Diagnostics & Usage whether to automatically send crash reports or not.

    You can also use a third party component to get detailed information about crash events, for example Crittercism.

    0 讨论(0)
  • 2021-01-27 22:50

    If you're interested in 3rd party services for crash reporting for iOS it's hard to go past Crashlytics. Very fast crash reporting, simple installation, great response times to queries.

    0 讨论(0)
  • 2021-01-27 22:52

    You can inject a third party code in your app, which would basically save your crash reports and thereafter you can use them for analysis. The way we do is capture any crash logs and upload them to the app server, which uses the info to display through a user-friendly web Interface (access controlled for admin purposes).

    A great open source Crash Reporter library can be found here https://github.com/kstenerud/KSCrash

    0 讨论(0)
  • 2021-01-27 23:05

    I'd also mention the TestFlight SDK, which is free and easy to use, and allows you to gather crash reports easily from all your testers, and also do remote logging and other stuff. I used it on a location based app I was working on a while ago, and it was very helpful with debugging

    0 讨论(0)
提交回复
热议问题