You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 1. Profiling for Android is currently disabled because it causes crashes sometimes.
22
-
// 2. When updating the profile sample rate, make sure it will not blow up our current limit in Sentry.
23
-
profilesSampleRate: 0.1,
24
21
enableAutoPerformanceTracing: true,
25
22
enableUserInteractionTracing: true,
26
23
integrations,
@@ -32,6 +29,17 @@ function setupSentry(): void {
32
29
// In HybridApp, native SDK is initialized early in Application.onCreate (Android) and
33
30
// AppDelegate (iOS) to capture breadcrumbs during native startup before JS loads.
34
31
autoInitializeNativeSdk: !CONFIG.IS_HYBRID_APP,
32
+
// We set experimental lifecycle value to enable profiling for whole spans. Without this option profile often is dropped early and we haven't the whole picture
33
+
// See https://github.com/Expensify/App/issues/87489
0 commit comments