Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 221 files
8 changes: 4 additions & 4 deletions src/Sentry.Bindings.Cocoa/ApiDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,7 @@ interface SentryObjCExperimentalOptions
[Export("enableUnhandledCPPExceptionsV2")]
bool EnableUnhandledCPPExceptionsV2 { get; set; }

// @property (nonatomic) BOOL enableWatchdogTerminationsV2;
// @property (nonatomic) BOOL enableWatchdogTerminationsV2 __attribute__((deprecated("enableWatchdogTerminationsV2 is deprecated and will be removed in v10, where the improved watchdog termination tracking mechanism is enabled by default.")));
[Export("enableWatchdogTerminationsV2")]
bool EnableWatchdogTerminationsV2 { get; set; }

Expand Down Expand Up @@ -1489,7 +1489,7 @@ interface SentryObjCOptions
[Export("sendClientReports")]
bool SendClientReports { get; set; }

// @property (nonatomic) BOOL enableAppHangTracking;
// @property (nonatomic) BOOL enableAppHangTracking __attribute__((deprecated("App Hang tracking is deprecated and will be removed in v10 because it can produce less relevant stack traces and false positives. Enable the MetricKit integration using ``SentrySDKOptions/enableMetricKit`` for system-provided hang diagnostics.", "enableMetricKit")));
[Export("enableAppHangTracking")]
bool EnableAppHangTracking { get; set; }

Expand Down Expand Up @@ -1589,15 +1589,15 @@ interface SentryObjCOptions
[Export("enableStandaloneAppStartTracing")]
bool EnableStandaloneAppStartTracing { get; set; }

// @property (nonatomic) BOOL enableReportNonFullyBlockingAppHangs;
// @property (nonatomic) BOOL enableReportNonFullyBlockingAppHangs __attribute__((deprecated("App Hang tracking is deprecated and will be removed in v10 because it can produce less relevant stack traces and false positives. Enable the MetricKit integration using ``SentrySDKOptions/enableMetricKit`` for system-provided hang diagnostics.", "enableMetricKit")));
[Export("enableReportNonFullyBlockingAppHangs")]
bool EnableReportNonFullyBlockingAppHangs { get; set; }

// @property (nonatomic, strong) SentryObjCReplayOptions * _Nonnull sessionReplay;
[Export("sessionReplay", ArgumentSemantic.Strong)]
SentryObjCReplayOptions SessionReplay { get; set; }

// @property (nonatomic) BOOL enableSigtermReporting;
// @property (nonatomic) BOOL enableSigtermReporting __attribute__((deprecated("This property will be removed in v10. KSCrash always catches SIGTERM, records a clean exit, and never writes a crash report for it.")));
[Export("enableSigtermReporting")]
bool EnableSigtermReporting { get; set; }

Expand Down
Loading