I have the below initializing in my root
Sentry.init({
dsn: "Some_value",
enabled: !DEV,
sendDefaultPii: true,
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1,
integrations: [
Sentry.mobileReplayIntegration({
maskAllText: true,
maskAllImages: true,
maskAllVectors: true,
}),
Sentry.feedbackIntegration(),
],
tracesSampleRate: DEV ? 1.0 : 0.1,
});
It crashes the iOS beta 26 on both debug and release.
If I comment replaysSessionSampleRate and replaysOnErrorSampleRate or make them 0, It works.
What is the problem
I have the below initializing in my root
Sentry.init({
dsn: "Some_value",
enabled: !DEV,
sendDefaultPii: true,
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1,
integrations: [
Sentry.mobileReplayIntegration({
maskAllText: true,
maskAllImages: true,
maskAllVectors: true,
}),
Sentry.feedbackIntegration(),
],
tracesSampleRate: DEV ? 1.0 : 0.1,
});
It crashes the iOS beta 26 on both debug and release.
If I comment replaysSessionSampleRate and replaysOnErrorSampleRate or make them 0, It works.
What is the problem