Skip to content

getsentry/sentry-cocoa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f45e9c6 · Jan 2, 2025
Jan 2, 2025
Jul 31, 2024
Jan 2, 2025
Dec 18, 2024
Oct 24, 2024
Dec 16, 2024
Nov 29, 2023
Jan 2, 2025
Oct 15, 2024
Jan 2, 2025
Oct 4, 2024
Oct 24, 2024
Dec 19, 2024
Jan 2, 2025
Nov 3, 2022
May 20, 2020
May 4, 2023
Mar 4, 2024
Oct 27, 2020
Oct 1, 2024
Jun 20, 2018
May 8, 2017
Oct 15, 2024
Oct 5, 2023
Dec 6, 2022
May 5, 2023
Sep 4, 2024
Dec 18, 2024
Dec 4, 2024
Jan 2, 2025
Nov 25, 2024
Dec 18, 2024
Dec 18, 2024
Apr 30, 2024
Oct 7, 2020
Jan 2, 2025
Jan 2, 2025
Oct 8, 2024
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Mar 7, 2023

Repository files navigation

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

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

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.

Releases

This repo uses the following ways to release SDK updates:

  • Pre-release: We create pre-releases (alpha, beta, RC,…) for larger and potentially more impactful changes, such as new features or major versions.
  • Latest: We continuously release major/minor/hotfix versions from the main branch. These releases go through all our internal quality gates and are very safe to use and intended to be the default for most teams.
  • Stable: We promote releases from Latest when they have been used in the field for some time and in scale, considering time since release, adoption, and other quality and stability metrics. These releases will be indicated on the releases page with the Stable suffix.

Where is the master branch?

We renamed the default branch from master to main.

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