Skip to content

npm-ued/sentry-cocoa

 
 

Repository files navigation


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

Travis codecov.io CocoaPods compadible Carthage compatible SwiftPM compatible platforms Twitter

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(options: [
    "dsn": "___PUBLIC_DSN___",
    "debug": true // Helpful to see what's going on
])
@import Sentry;

// ....

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

(1)limited symbolication support

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 57.4%
  • C 40.2%
  • Swift 1.0%
  • Ruby 0.7%
  • C++ 0.5%
  • Shell 0.1%
  • Makefile 0.1%