1111#import " SentryStacktrace.h"
1212#import " SentrySwift.h"
1313#import " SentryThread.h"
14- #import < SentryOptionsInternal+Private.h>
1514
1615#if SENTRY_HAS_UIKIT
1716# import < UIKit/UIKit.h>
2423@interface SentryANRTrackingIntegration () <SentryANRTrackerDelegate>
2524
2625@property (nonatomic , strong ) SentryANRTracker *tracker;
27- @property (nonatomic , strong ) SentryOptionsInternal *options;
26+ @property (nonatomic , strong ) SentryOptions *options;
2827@property (nonatomic , strong ) SentryFileManager *fileManager;
2928@property (nonatomic , strong ) SentryDispatchQueueWrapper *dispatchQueueWrapper;
3029@property (nonatomic , strong ) SentryCrashWrapper *crashWrapper;
@@ -37,7 +36,7 @@ @interface SentryANRTrackingIntegration () <SentryANRTrackerDelegate>
3736
3837@implementation SentryANRTrackingIntegration
3938
40- - (BOOL )installWithOptions : (SentryOptionsInternal *)options
39+ - (BOOL )installWithOptions : (SentryOptions *)options
4140{
4241 if (![super installWithOptions: options]) {
4342 return NO ;
@@ -164,7 +163,7 @@ - (void)anrDetectedWithType:(enum SentryANRType)type
164163 // we would lose the scope. Furthermore, we want to know in which state the app was when the
165164 // app hang started.
166165 SentryScope *scope = [SentrySDKInternal currentHub ].scope ;
167- SentryOptionsInternal *options = SentrySDKInternal.options ;
166+ SentryOptions *options = SentrySDKInternal.options ;
168167 if (scope != nil && options != nil ) {
169168 [scope applyToEvent: event maxBreadcrumb: options.maxBreadcrumbs];
170169 }
0 commit comments