/sentry-cocoa

The official Sentry SDK for iOS, tvOS, macOS, watchOS

Primary LanguageObjective-CMIT LicenseMIT


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

Travis codebeat badge codecov.io CocoaPods compadible Carthage compatible SwiftPM compatible platforms

This SDK is written in Objective-C but also provides a nice Swift interface.

Initialization

Remember to call this as early in your application life cycle as possible Ideally in applicationDidFinishLaunching in AppDelegate

import Sentry

// ....

SentrySDK.start(options: [
    "dsn": "___PUBLIC_DSN___",
    "debug": true // Helpful to see what's going on
])
@import Sentry;

// ....

[SentrySDK startWithOptions:@{
    @"dsn": @"___PUBLIC_DSN___",
    @"debug": @(YES) // Helpful to see what's going on
}];

(1)limited symbolication support

Resources

  • Documentation
  • Forum
  • Discord
  • Stack Overflow
  • Code of Conduct
  • Twitter Follow