Skip to content

miLibris/sentry-cocoa

This branch is 1686 commits behind getsentry/sentry-cocoa:main.

Folders and files

NameName
Last commit message
Last commit date
Sep 13, 2022
Sep 8, 2022
Sep 14, 2022
Sep 15, 2022
May 19, 2022
Sep 15, 2022
Sep 13, 2022
Mar 4, 2021
Jul 13, 2022
Aug 17, 2022
Sep 14, 2022
Jun 20, 2022
May 20, 2020
Jun 2, 2021
Oct 27, 2020
Jul 19, 2022
Jun 20, 2018
May 8, 2017
Jul 11, 2022
Dec 14, 2021
Aug 17, 2022
Jul 7, 2022
Jul 7, 2022
Sep 15, 2022
Sep 15, 2022
Dec 14, 2021
Sep 1, 2022
Apr 6, 2016
Oct 7, 2020
Aug 17, 2022
Sep 9, 2022
Jun 17, 2022
Sep 14, 2022
Apr 13, 2021

Repository files navigation

Sentry

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

Bad software is everywhere, and we're tired of it. Sentry is on a mission to help developers write better software faster, so we can get back to enjoying technology. If you want to join us Check out our open positions

Build codebeat badge codecov.io CocoaPods compadible Carthage compatible SwiftPM compatible platforms Swift Package Index Discord Chat

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 in
    options.dsn = "___PUBLIC_DSN___"
    options.debug = true // Helpful to see what's going on
}    
@import Sentry;

// ....

[SentrySDK startWithConfigureOptions:^(SentryOptions *options) {
    options.dsn = @"___PUBLIC_DSN___";
    options.debug = @YES; // Helpful to see what's going on
}];

For more information checkout the docs.

(1)limited symbolication support and no crash handling.

Blog posts

Mobile Vitals - Four Metrics Every Mobile Developer Should Care About.

How to use Sentry Attachments with Mobile Applications.

Close the Loop with User Feedback.

A Sanity Listicle for Mobile Developers.

Resources

  • Documentation
  • Discussions
  • Discord Chat
  • Stack Overflow
  • Code of Conduct
  • Twitter Follow

About

Fork used for light maintaining on v5

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 46.9%
  • Swift 26.0%
  • C 21.9%
  • C++ 2.5%
  • Objective-C++ 1.2%
  • Python 0.5%
  • Other 1.0%