File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed
Integrations/SessionReplay/RRWeb Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ FOUNDATION_EXPORT const unsigned char SentryVersionString[];
37
37
# import <Sentry/SentrySampleDecision.h>
38
38
# import <Sentry/SentrySamplingContext.h>
39
39
# import <Sentry/SentryScope.h>
40
- # import <Sentry/SentrySerializable.h>
40
+ # if !SDK_V9
41
+ # import <Sentry/SentrySerializable.h>
42
+ # endif
41
43
# import <Sentry/SentrySpanContext.h>
42
44
# import <Sentry/SentrySpanId.h>
43
45
# import <Sentry/SentrySpanProtocol.h>
Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ FOUNDATION_EXPORT const unsigned char SentryVersionString[];
38
38
# import <SentryWithoutUIKit/SentrySampleDecision.h>
39
39
# import <SentryWithoutUIKit/SentrySamplingContext.h>
40
40
# import <SentryWithoutUIKit/SentryScope.h>
41
- # import <SentryWithoutUIKit/SentrySerializable.h>
41
+ # if !SDK_V9
42
+ # import <SentryWithoutUIKit/SentrySerializable.h>
43
+ # endif
42
44
# import <SentryWithoutUIKit/SentrySpanContext.h>
43
45
# import <SentryWithoutUIKit/SentrySpanId.h>
44
46
# import <SentryWithoutUIKit/SentrySpanProtocol.h>
Original file line number Diff line number Diff line change @@ -14,7 +14,12 @@ NS_ASSUME_NONNULL_BEGIN
14
14
@class SentryFramesTracker;
15
15
#endif // SENTRY_HAS_UIKIT
16
16
17
- @interface SentrySpan : NSObject <SentrySpan, SentrySerializable>
17
+ @interface SentrySpan : NSObject
18
+ #if !SDK_V9
19
+ <SentrySpan, SentrySerializable>
20
+ #else
21
+ <SentrySpan>
22
+ #endif
18
23
SENTRY_NO_INIT
19
24
20
25
/* *
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ enum SentryRRWebEventType: Int {
10
10
}
11
11
12
12
@objc ( SentryRRWebEvent)
13
- @_spi ( Private) public protocol SentryRRWebEventProtocol : SentrySerializable {
13
+ @_spi ( Private) public protocol SentryRRWebEventProtocol {
14
+ func serialize( ) -> [ String : Any ]
14
15
}
15
16
16
17
@objcMembers
Original file line number Diff line number Diff line change 1
1
@_implementationOnly import _SentryPrivate
2
2
import Foundation
3
3
4
- @objcMembers @_spi ( Private) public class SentryAppState : NSObject , SentrySerializable {
4
+ @objcMembers @_spi ( Private) public class SentryAppState : NSObject {
5
5
6
6
public private( set) var releaseName : String ?
7
7
public private( set) var osVersion : String
@@ -129,4 +129,4 @@ import Foundation
129
129
130
130
return data
131
131
}
132
- }
132
+ }
You can’t perform that action at this time.
0 commit comments