-
-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
@interface RNSentrySessionReplay : NSObject | ||
|
||
+ (void)setup; | ||
|
||
@end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#import "RNSentrySessionReplay.h" | ||
#import "RNSentryBreadcrumbConverter.h" | ||
|
||
@implementation RNSentrySessionReplay {} | ||
|
||
+ (void)setup { | ||
RNSentryBreadcrumbConverter *breadcrumbConverter = | ||
[[RNSentryBreadcrumbConverter alloc] init]; | ||
[PrivateSentrySDKOnly configureSessionReplayWith:breadcrumbConverter | ||
Check failure on line 9 in ios/RNSentrySessionReplay.m GitHub Actions / Build legacy ios production dynamic-frameworks
Check failure on line 9 in ios/RNSentrySessionReplay.m GitHub Actions / Build legacy macos production no-frameworks
Check failure on line 9 in ios/RNSentrySessionReplay.m GitHub Actions / Build new ios dev no-frameworks
Check failure on line 9 in ios/RNSentrySessionReplay.m GitHub Actions / Build legacy ios dev dynamic-frameworks
Check failure on line 9 in ios/RNSentrySessionReplay.m GitHub Actions / Build legacy ios production no-frameworks
Check failure on line 9 in ios/RNSentrySessionReplay.m GitHub Actions / Build legacy ios dev no-frameworks
Check failure on line 9 in ios/RNSentrySessionReplay.m GitHub Actions / Build new ios production no-frameworks
|
||
screenshotProvider:nil]; | ||
} | ||
|
||
@end |