Skip to content

Commit dfbfa7e

Browse files
committed
Fixes
1 parent 2f5046b commit dfbfa7e

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

packages/core/RNSentryCocoaTester/RNSentryCocoaTesterTests/RNSentryTests.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
@class SentryOptions;
55

66
#if CROSS_PLATFORM_TEST
7-
@interface SentrySDKInternal : NSObject
7+
@interface
8+
SentrySDKInternal (PrivateTests)
89
#else
910
@interface
10-
SentrySDK (Private)
11+
SentrySDK (PrivateTests)
1112
#endif
1213
+ (nullable SentryOptions *)options;
1314
@end

packages/core/ios/RNSentry.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
typedef int (*SymbolicateCallbackType)(const void *, Dl_info *);
1414

1515
@class SentryOptions;
16+
@class SentryEvent;
1617

1718
#if CROSS_PLATFORM_TEST
1819
@interface SentrySDKInternal : NSObject

packages/core/ios/RNSentry.mm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,15 @@
2121
#import <Sentry/PrivateSentrySDKOnly.h>
2222
#import <Sentry/SentryAppStartMeasurement.h>
2323
#import <Sentry/SentryBinaryImageCache.h>
24+
#import <Sentry/SentryBreadcrumb.h>
2425
#import <Sentry/SentryDebugImageProvider+HybridSDKs.h>
26+
#import <Sentry/SentryDebugMeta.h>
2527
#import <Sentry/SentryDependencyContainer.h>
28+
#import <Sentry/SentryEvent.h>
29+
#import <Sentry/SentryException.h>
2630
#import <Sentry/SentryFormatter.h>
31+
#import <Sentry/SentryOptions.h>
32+
#import <Sentry/SentryUser.h>
2733
#if __has_include(<Sentry/SentryOptions+HybridSDKs.h>)
2834
# define USE_SENTRY_OPTIONS 1
2935
# import <Sentry/SentryOptions+HybridSDKs.h>

packages/core/ios/RNSentryReplayBreadcrumbConverter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import Sentry;
22

33
#if SENTRY_TARGET_REPLAY_SUPPORTED
4-
@class SentryRRWebEvent;
4+
@protocol SentryRRWebEvent;
55

66
@interface RNSentryReplayBreadcrumbConverter : NSObject <SentryReplayBreadcrumbConverter>
77

0 commit comments

Comments
 (0)