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:
PLCrashReporter
worth to do only what I need?PLCrashReporter
under the MIT
license? And will Apple approve it for release in App Store
? My app will be a commercial one.uncaughtExceptionHandler
, I read somewhere that it is not reliable to report app crashes this way, is that correct?Thanks in advance