Skip to content

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

License

Notifications You must be signed in to change notification settings

Animaxx/sentry-cocoa

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


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
  • Twitter Follow

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 54.4%
  • C 38.4%
  • Swift 4.9%
  • Python 0.9%
  • Ruby 0.7%
  • C++ 0.5%
  • Other 0.2%