Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS Crash Reporter Service / Alternative to MacDevCrashReports.com

I'm looking for a iOS crash reporter web service. I know MacDevCrashReports but they currently do not accept new sign ups.

I know there is a open source crash reporter framework on GitHub, but I don't want to put that stuff on a server, configure it and so on. A nice web service would be much nicer.

Thanks,

Patrick

like image 993
Patrick Avatar asked Feb 05 '11 15:02

Patrick


3 Answers

I've been using Crittercism for my iOS and Android apps. It's saved me a LOT of time. It has a few more features than BugSense and Hoptoad.

like image 106
Julie Avatar answered Nov 15 '22 08:11

Julie


MacDevCrashReports is running out, since I am not able to continue providing the service for free, the amount of data is just too huge. 100.000 crash reports e.g. require about 2GB of storage. BUT I am working on a new service with some friends to provide enhanced functionality for managing crash reports and other developer related data. You might want to check for HockeyApp for news about that.

Until then, you can also use the source MacDevCrashReports is based on, on your own web server. It is completely open source and available at GitHub.

The process of collecting crashes is using PLCrashReporter. Which is more reliable and is async-safe. There are also cases of crashes, like crashes in objc runtime, where it will result in a deadlock (Information by Landon Fuller, creator of PLCrashReporter).

Symbolication of PLCrashReporter created crash log files, can be done with the dSYM bundles, check this description.

Regarding the AppStore argument from Peter. As Patrick points out, this is not working for Ad-Hoc builds, which is one big issue, since you want to find and fix the crashes while testing. On the other side, the crash reports in iTunes Connect are very inaccurate:

  • The data set only updates once a day
  • The data is only available after users sync their devices with iTunes and only IF they agreed sending that data. Since most users don't understand the dialog, they deny
  • You only get a subset of crashes, the top 5
  • You don't get instant reports, as opposed using an in-app reporter
  • You don't get grouping of similar crashes as the web service does
  • You don't get a web interface to work with the crashes, make notes, mark as fixed, etc.

iTunes connect reports for my app to have 0 (zero) crashes, but in my database there are about 200! Check this blog post by futuretap about their experience and findings of using an in-app crash reporter.

like image 37
Kerni Avatar answered Nov 15 '22 06:11

Kerni


There is a new service called BugSense . Give it a shot!

like image 26
PanosJee Avatar answered Nov 15 '22 06:11

PanosJee