admin管理员组

文章数量:1401171

I am using Sentry in my Expo managed workflow with "sentry-expo": "~7.0.0". It works perfectly in development mode and even when running with --no-dev --minify. However, after building a preview build with EAS, Sentry does not capture or log any events on the Sentry dashboard.

"dependencies": {
  "sentry-expo": "~7.0.0",
  "expo": "^52.0.27",
}

Here is how I have Sentry configuration looks like

import * as Sentry from '@sentry/react-native';
import { Alert } from 'react-native';

Sentry.init({
  dsn: 'https://a18559a4e743489f8b57247563fe3..........',
  enableInExpoDevelopment: true,
  debug: true,  // Enabled debugging but no errors are logged
  enableAutoSessionTracking: true,
  onReady: (props) => Alert.alert('Sentry Ready'),  // This alert appears, so init is successful
  beforeSend(event) {
    Alert.alert("

本文标签: