Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accessing iOS crash report from iOS app

There are quite a few tutorials on how to access crash reports using a computer, but what I would like my app to do is scan for crash reports (from itself) on startup--so that users can use my app to send me their reports. Is this possible?

like image 963
Authman Apatira Avatar asked Dec 07 '22 15:12

Authman Apatira


1 Answers

PLCrashReporter is an open source crash reporting framework that can be added to an iOS App. Reports are generated in protobuf encoded format, which should allow an app to upload these reports to a server.

like image 121
hotpaw2 Avatar answered Dec 24 '22 07:12

hotpaw2