Expo Sentry won't register any issues but does track sessions

After discovering that Sentry wasn’t registrering any issues for quite some time now, i’ve updated our app according to the “Using Sentry” guide. I think the issues stopped coming after we switched to EAS. We’ve updated our app and we can now see Sentry is logging the sessions again. The weird thing is it won’t register any errors or crashes. I’ve created a TestFlight and threw some JS errors in there but without results. Am i missing something in the configuration?

App.js sentry init:

Sentry.init({
    dsn: 'xxx',
    enableInExpoDevelopment: true,
    environment: __DEV__ ? 'development' : 'production',
});

app.json:

plugins": [
      "sentry-expo"
    ],
    "hooks": {
      "postPublish": [
        {
          "file": "sentry-expo/upload-sourcemaps",
          "config": {
            "organization": "nobears-6z",
            "project": "workit-v2",
            "setCommits": true
          }
        }
      ]
    },

The auth token is set within Expo Secrets as SENTRY_AUTH_TOKEN

Solved! Turns out we exceeded our our limit because of another app and errors above that were lost :smiley:

1 Like

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.