Skip to content
This repository was archived by the owner on Aug 22, 2020. It is now read-only.

Latest commit

 

History

History
57 lines (43 loc) · 1.43 KB

File metadata and controls

57 lines (43 loc) · 1.43 KB

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