Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
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
7 changes: 0 additions & 7 deletions Samples/iOS-Swift/iOS-Swift/Tools/SentryExposure.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@

NS_ASSUME_NONNULL_BEGIN

@interface SentryBreadcrumbTracker : NSObject

+ (nullable NSDictionary *)extractDataFromView:(UIView *)view
withAccessibilityIdentifier:(BOOL)includeIdentifier;

@end

@interface SentryClientInternal : NSObject

@property (nonatomic) SentryOptions *options;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Foundation
import Sentry
@_spi(Private) import Sentry
import UIKit

class InfoForBreadcrumbController: UIViewController {
Expand All @@ -13,13 +13,12 @@ class InfoForBreadcrumbController: UIViewController {
}

@IBAction func buttonPressed(_ sender: Any) {
guard let view = self.view,
let viewInfo = SentryBreadcrumbTracker.extractData(from: view, withAccessibilityIdentifier: true),
let buttonInfo = SentryBreadcrumbTracker.extractData(from: button, withAccessibilityIdentifier: true)
else {
guard let view = self.view else {
label?.text = "ERROR"
return
}
let viewInfo = SentryBreadcrumbTracker.extractData(from: view, includeAccessibilityIdentifier: true)
let buttonInfo = SentryBreadcrumbTracker.extractData(from: button, includeAccessibilityIdentifier: true)

let hasCorrectData = String(describing: view) == viewInfo["view"] as? String &&
viewInfo["tag"] == nil &&
Expand Down
57 changes: 15 additions & 42 deletions Sentry.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

101 changes: 0 additions & 101 deletions Sources/Sentry/SentryAutoBreadcrumbTrackingIntegration.m

This file was deleted.

Loading
Loading