Reliable, open-source crash reporting for iOS, macOS and tvOS
Перейти к файлу
Ivan Matkov 1a8b8e322a Enable Mac Catalyst support 2020-05-08 16:00:41 +03:00
CrashReporter.xcodeproj Enable Mac Catalyst support 2020-05-08 16:00:41 +03:00
Dependencies Add CG manifest for protobuf-c 2020-04-28 11:09:27 +03:00
Documentation/Crash Log Format Rename to 'Crash Log Format' 2008-12-16 07:31:54 +00:00
Other Sources Fix visibility block 2020-04-28 18:48:42 +04:00
Resources Enable Mac Catalyst support 2020-05-08 16:00:41 +03:00
Scripts Fix typo 2020-04-29 20:26:15 +03:00
Source Disable 64-bit mach_* APIs for SPM 2020-04-30 19:53:40 +03:00
Tests Fix rest of warnings in tests 2020-04-30 18:59:12 +03:00
Tools/CrashViewer Merge branch '1.2-with-master' into prepre-for-merge 2019-10-18 17:52:26 +03:00
include Add SPM support 2020-04-30 19:09:26 +03:00
.gitignore Update autogenerated files and ignore temp file that produced by doxygen 2020-04-29 20:15:36 +03:00
CHANGELOG.md Apply suggestions from code review 2020-05-05 16:34:42 +03:00
Doxyfile Fix docs generation 2019-10-16 14:37:07 +03:00
LICENSE Add MS copyright 2020-03-06 10:12:59 -08:00
PLCrashReporter.podspec Bump minor version to 1.5.1 2020-03-17 15:18:49 -07:00
Package.swift Add platforms list to SwiftPM manifest 2020-05-06 22:06:35 +03:00
README.md Address feedback 2020-05-06 21:52:55 +03:00
ThirdPartyNotices.txt Remove "Catch" from 3rd party notices 2019-10-18 17:04:14 +03:00

README.md

CocoaPods Carthage compatible SwiftPM compatible

PLCrashReporter

PLCrashReporter is a reliable open source library that provides an in-process live crash reporting framework for use on iOS, macOS and tvOS. The library detects crashes and generates reports to help your investigation and troubleshooting with the information of application, system, process, thread, etc. as well as stack traces.

The easiest way to use PLCrashReporter is by using AppCenter. However, if you want to use PLCrashReporter directly, grab the latest release at releases page.

Features

  • Uses only supported and public APIs/ABIs for crash reporting.
  • The most accurate stack unwinding available, using DWARF and Apple Compact Unwind frame data.
  • First released in 2008, and used in hundreds of thousands of apps. PLCrashReporter has seen a tremendous amount of user testing.
  • Does not interfere with debugging in lldb/gdb
  • Easy to integrate with existing or custom crash reporting services.
  • Backtraces for all active threads are provided.
  • Provides full register state for the crashed thread.

Prerequisites

  • Xcode 10 or above.
  • Minimum supported platforms: iOS 8, macOS 10.7, tvOS 9.

Decoding Crash Reports

Crash reports are output as protobuf-encoded messages, and may be decoded using the CrashReporter library or any Google Protocol Buffers decoder.

In addition to the in-library decoding support, you may use the included plcrashutil binary to convert crash reports to apple's standard iPhone text format. This may be passed to the symbolicate tool.

./bin/plcrashutil convert --format=iphone example_report.plcrash | symbolicatecrash Future library releases may include built-in re-usable formatters, for outputting alternative formats directly from the phone.

Building

Prerequisites

  • A Mac running macOS compliant with Xcode requirements.
  • Xcode 10.1 or above.

Also, next optional tools are used to build additional resources:

To build

  • Open a new window for your Terminal.

  • Go to PLCrashReporter's root folder and run

    xcodebuild BITCODE_GENERATION_MODE=bitcode OTHER_CFLAGS="-fembed-bitcode" -configuration Release -target 'Disk Image'
    

    to create binaries for all platforms.

  • Verify that your iOS and tvOS binaries have Bitcode enabled by running otool -l build/Release-appletv/CrashReporter.framework/Versions/A/CrashReporter | grep __LLVM (adjust the path to the binary as necessary). If you see some output, it means the binary is Bitcode enabled.

Contributing

We are looking forward to your contributions via pull requests.

To contribute to PLCrashReporter, you need the tools mentioned above to build PLCrashReporter for all architectures and protobuf-c to convert Protocol Buffer .proto files to C descriptor code.

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.