ecency-mobile/ios/Pods/Sentry
Mustafa Buyukcelebi 02cf1c27b2 Pod update for ios
2019-05-15 14:28:14 +03:00
..
Sources Pod update for ios 2019-05-15 14:28:14 +03:00
LICENSE.md Pod update for ios 2019-05-15 14:28:14 +03:00
README.md Pod update for ios 2019-05-15 14:28:14 +03:00


Official Sentry SDK for iOS/macOS/tvOS/watchOS(1).

Travis platforms langauges CocoaPods Shield CocoaPods Shield Carthage compatible codecov

This SDK is written in Objective-C but also works for Swift projects.

import Sentry

func application(application: UIApplication,
    didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

    // Create a Sentry client and start crash handler
    do {
        Client.shared = try Client(dsn: "___PUBLIC_DSN___")
        try Client.shared?.startCrashHandler()
    } catch let error {
        print("\(error)")
        // Wrong DSN or KSCrash not installed
    }

    return true
}

(1)limited symbolication support