Accessing iOS crash report from iOS app

前端 未结 4 798
天命终不由人
天命终不由人 2021-02-03 15:43

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 u

相关标签:
4条回答
  • 2021-02-03 16:02

    You can get them using your itunes connect account

     When the user synchronizes their device using iTunes, crash reports are copied to a
    directory on the user's computer. If the application was distributed via the App Store and 
    the user has chosen to submit crash logs to Apple, the crash log will be uploaded and the 
    developer can download it via iTunes Connect.
    

    You can also use Crittercism which directly sends you an email once a crash happens.

    0 讨论(0)
  • 2021-02-03 16:03

    Another proprietary (but free) framework you can use for crash reporting is Crashlytics.

    0 讨论(0)
  • 2021-02-03 16:04

    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.

    0 讨论(0)
  • 2021-02-03 16:04

    Take a look at these few resources that may have the solution you need:

    • https://testflightapp.com/
    • http://www.hockeyapp.net/
    • http://quincykit.net/
    0 讨论(0)
提交回复
热议问题