CrashlyticsRecorder 2.3.0

CrashlyticsRecorder 2.3.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Dec 2018
SPMSupports SPM

Maintained by Anthony Miller, Jett Farmer.



CrashlyticsRecorder

Version License Platform

The Crashlytics platform is unable to be included as a transitive dependency, meaning you are unable to use it in a framework that will be included in an application that uses Crashlytics. This library uses dependency injection to create a wrapper around the Crashlytics and Answers classes for use in other frameworks.

Functionality

  • Set custom keys on crash reports
  • Record non-fatal errors
  • Record Swift ErrorType errors with custom keys
  • Logging using CLS_LOG
  • Record events using Answers
  • Logging of custom exceptions

Usage

In Frameworks

CrashlyticsRecorder and AnswersRecorder act as wrappers for Crashlytics and Answers respectively. To use these classes, include this pod as a dependency for your framework. If you are using CocoaPods, this can be accomplished by adding the following lines to your Podfile and podspec.

Podfile

pod 'CrashlyticsRecorder'

podspec

s.dependency 'CrashlyticsRecorder'

You can then use CrashlyticsRecorder.sharedInstance and AnswersRecorder.sharedInstance in your framework.

In Applications

In order for CrashlyticsRecorder to work properly in your application's included frameworks, you will need to take a few steps.

  1. Include the CrashlyticsAdapter.swift file in your application target. Alternatively, you can copy the following code into your AppDelegate, or anywhere in your application target.
import Crashlytics
import CrashlyticsRecorder

extension Crashlytics: CrashlyticsProtocol {
    public func log(format: String, args: CVaListPointer) {
        #if DEBUG
            CLSNSLogv(format, args)
        #else
            CLSLogv(format, args)
        #endif
    }
}

extension Answers: AnswersProtocol { }
  1. Create the CrashlyticsRecorder and AnswersRecorder shared instances in your AppDelegate after setting up Crashlytics.
public func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    Fabric.with([Crashlytics()])
    CrashlyticsRecorder.createSharedInstance(crashlytics: Crashlytics.sharedInstance())
    AnswersRecorder.createSharedInstance(answers: Answers.self)
}

Requirements

You must have a Fabric account to use Crashlytics and the CrashlyticsRecorder in your applications.

Author

Anthony Miller, [email protected]

License

CrashlyticsRecorder is available under the MIT license. See the LICENSE file for more info.