Skip to content

Commit de11152

Browse files
committed
Fixes
1 parent 2f5046b commit de11152

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

packages/core/RNSentryCocoaTester/RNSentryCocoaTesterTests/RNSentryTests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@class SentryOptions;
55

66
#if CROSS_PLATFORM_TEST
7-
@interface SentrySDKInternal : NSObject
7+
@interface SentrySDKInternal (Private)
88
#else
99
@interface
1010
SentrySDK (Private)

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
@@ -24,6 +24,12 @@
2424
#import <Sentry/SentryDebugImageProvider+HybridSDKs.h>
2525
#import <Sentry/SentryDependencyContainer.h>
2626
#import <Sentry/SentryFormatter.h>
27+
#import <Sentry/SentryEvent.h>
28+
#import <Sentry/SentryOptions.h>
29+
#import <Sentry/SentryBreadcrumb.h>
30+
#import <Sentry/SentryException.h>
31+
#import <Sentry/SentryUser.h>
32+
#import <Sentry/SentryDebugMeta.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)