sentry-expo-updates

This is a fork of sentry-expo with modifications to work with expo-updates on a bare workflow.

Usage no npm install needed!

<script type="module">
  import sentryExpoUpdates from 'https://cdn.skypack.dev/sentry-expo-updates';
</script>

README

sentry-expo-updates

This is a fork of sentry-expo with modifications to work with expo-updates on a bare workflow.

Installation

npm install @sentry/integrations sentry-expo-updates

Instead of Sentry.init use configureWithExpoUpdates

import { configureWithExpoUpdates } from 'sentry-expo-updates';

...
configureWithExpoUpdates({
  dsn: `https://${Config.SENTRY_CLIENT_KEY}@sentry.io/${Config.SENTRY_PROJECT_ID}`,
  enabled: ...
});

Sourcemaps support

{
  ...
  "expo": {
    ...
    "hooks": {
      ...
      "postPublish": [
        {
          "file": "sentry-expo-updates/upload-sourcemaps",
          "config": {
            "organization": "...",
            "project": "..",
            "authToken": "..."
          }
        }
      ]
    }
  }
}

Limitations

  • This library is not tested with the new no-publish workflow of expo-updates.
  • Native crash is not tagged with expo-updates revision id.

Some Links

Sentry Website

sentry-react-native repo