I need to send app crashes stacktraces to a certain web service (I was given such requirement). It looks like there is a third-party framework, PLCrashReporter, that allows to send such info to the web service you want, is that right?
On the other hand, I've read that it is also possible to get the app crash info in an uncaughtExceptionHandler method, to write it to a file, and send it when app launches again, is that also right?
After reading a little about both options, I have some questions. I just want to send crashes info to my particular web service, so:
- Is integrating
PLCrashReporterworth to do only what I need? - Is such functionality of
PLCrashReporterunder theMITlicense? And will Apple approve it for release inApp Store? My app will be a commercial one. - Is there any other crash reporting framework I could use to call my own web service?
- Regarding
uncaughtExceptionHandler, I read somewhere that it is not reliable to report app crashes this way, is that correct?
Thanks in advance