File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 66
77- Fix crash in Session Replay when opening the camera UI on iOS 26+ by skipping redaction of internal views.
88 This may result in more of the camera screen being redacted. (#6045 )
9- - Fix crash when using the SDK as a static framework (#6125 )
9+ - Fix crash in SentryDependencyContainer init when using the SDK as a static framework (#6125 )
1010
1111## 8.56.0-alpha.1
1212
Original file line number Diff line number Diff line change @@ -144,10 +144,6 @@ - (instancetype)init
144144 if (self = [super init ]) {
145145 isInitialializingDependencyContainer = YES ;
146146
147- // These classes must be referenced somewhere for their files to not be stripped.
148- id _ = [[PlaceholderSentryApplication alloc ] init ];
149- _ = [[PlaceholderProcessInfoClass alloc ] init ];
150-
151147 _dispatchQueueWrapper = SentryDependencies.dispatchQueueWrapper ;
152148 _random = [[SentryRandom alloc ] init ];
153149 _threadWrapper = [[SentryThreadWrapper alloc ] init ];
Original file line number Diff line number Diff line change @@ -254,6 +254,9 @@ + (void)startWithOptions:(SentryOptions *)options
254254 // Reference to SentryCrashExceptionApplication to prevent compiler from stripping it
255255 [SentryCrashExceptionApplication class ];
256256#endif
257+ // These classes must be referenced somewhere for their files to not be stripped.
258+ id _ = [[PlaceholderSentryApplication alloc ] init ];
259+ _ = [[PlaceholderProcessInfoClass alloc ] init ];
257260
258261 startInvocations++;
259262 startTimestamp = [SentryDependencyContainer.sharedInstance.dateProvider date ];
You can’t perform that action at this time.
0 commit comments