Skip to content

Commit cc4f1b9

Browse files
committed
🔊 migrate to new sentry after upgrading to expo 50
1 parent c9aff7b commit cc4f1b9

File tree

7 files changed

+16
-21
lines changed

7 files changed

+16
-21
lines changed

‎App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ function App() {
1818
return <AppContainer />;
1919
}
2020

21-
export default Sentry.Native.wrap(App);
21+
export default Sentry.wrap(App);

‎app.config.ts

+6-10
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,17 @@ export default ({ config }: ConfigContext): ExpoConfig => {
2727
},
2828
],
2929
"expo-localization",
30-
"sentry-expo",
3130
"expo-notifications",
3231
"expo-font",
33-
],
34-
hooks: {
35-
postPublish: [
32+
[
33+
"@sentry/react-native/expo",
3634
{
37-
config: {
38-
organization: process.env.SENTRY_ORG,
39-
project: process.env.SENTRY_PROJECT,
40-
},
41-
file: "sentry-expo/upload-sourcemaps",
35+
authToken: process.env.SENTRY_AUTH_TOKEN,
36+
organization: process.env.SENTRY_ORG,
37+
project: process.env.SENTRY_PROJECT,
4238
},
4339
],
44-
},
40+
],
4541
android: {
4642
adaptiveIcon: {
4743
foregroundImage: "./assets/adaptive-icon.png",

‎metro.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Learn more https://docs.expo.io/guides/customizing-metro
2-
const { getDefaultConfig } = require("expo/metro-config");
2+
const { getSentryExpoConfig } = require("@sentry/react-native/metro");
33

44
/** @type {import('expo/metro-config').MetroConfig} */
5-
const defaultConfig = getDefaultConfig(__dirname, {
5+
const defaultConfig = getSentryExpoConfig(__dirname, {
66
// [Web-only]: Enables CSS support in Metro.
77
isCSSEnabled: true,
88
});

‎src/hooks/use-note-form/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function useNoteForm(note: Note) {
3131
id: note.id,
3232
});
3333
} catch (e) {
34-
Sentry.Native.captureException(e);
34+
Sentry.captureException(e);
3535
}
3636
setSubmitting(false);
3737
},

‎src/hooks/use-note-privacy-mutation/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async function toggleNotePrivacy({ note }: { note: Note }) {
2626
await NoteService.update(note.id!, { is_private: isPrivate });
2727
return isPrivate;
2828
} catch (e) {
29-
Sentry.Native.captureException(e);
29+
Sentry.captureException(e);
3030
return false;
3131
}
3232
}

‎src/hooks/use-update-note-mutation/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async function updateNote(input: UpdateNoteMutationInput) {
2424
export default function useUpdateNoteMutation() {
2525
return useMutation(updateNote, {
2626
onError(error, variables, context) {
27-
Sentry.Native.captureException(error, {
27+
Sentry.captureException(error, {
2828
extra: { variables, context },
2929
});
3030
},

‎src/services/sentry/index.ts

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import * as Sentry from "sentry-expo";
1+
import * as Sentry from "@sentry/react-native";
22

33
import { config } from "config";
44

5-
const routingInstrumentation =
6-
new Sentry.Native.ReactNavigationInstrumentation();
5+
const routingInstrumentation = new Sentry.ReactNavigationInstrumentation();
76

8-
Sentry.Native.init({
7+
Sentry.init({
98
integrations: [
10-
new Sentry.Native.ReactNativeTracing({
9+
new Sentry.ReactNativeTracing({
1110
routingInstrumentation,
1211
}),
1312
],

0 commit comments

Comments
 (0)