I'm having the toughest time trying to get my app's warm and cold start times. This is my config and I see nothing in my debug that points towards this erroring, but I also see nothing in the Sentry UI besides the splash ad about mobile vitals. What am I missing here?
enableAppStartTracking: true,
enableNativeFramesTracking: true,
enableStallTracking: true,
environment: 'development',
dsn: sentryDsn,
release: getFullyQualifiedAppVersion(),
debug: true,
tracePropagationTargets: [],
tracesSampleRate: 1.00,
integrations: [
Sentry.breadcrumbsIntegration({ dom: false }),
Sentry.reactNativeTracingIntegration(),
Sentry.reactNavigationIntegration({
enableTimeToInitialDisplay: true,
}),
],
// Util log for sentry, only uncomment for debugging
beforeSend(event) {
console.log('Sending event to Sentry:', event);
return event;
},
});
const App = () => {
useZendesk();
return (
<ThemeProvider>
<DeviceAppDemographicsProvider>
<BootstrapProvider>
<InterfaceProvider />
</BootstrapProvider>
</DeviceAppDemographicsProvider>
</ThemeProvider>
);
};
export default Sentry.wrap(App);```