This release contains upgrade of sentry-android
dependency to major version 7. There are no breaking changes in the JS API. If you are using the Android API please check the migration guide.
Features
-
Add Android profiles to React Native Profiling (#3397)
-
Add
Sentry.metrics
(#3590)To learn more, see the Set Up Metrics guide.
import * as Sentry from '@sentry/react-native'; Sentry.init({ dsn: '___DSN___', integrations: [ Sentry.metrics.metricsAggregatorIntegration(), ], }); Sentry.metrics.increment("button_click", 1, { tags: { system: "iOS", app_version: "1.0.0" }, });
Fixes
- Upload Debug Symbols Build Phase continues when
node
not found inWITH_ENVIRONMENT
(#3573) - Fix
proguardUuid
loading on Android (#3591)