From c75c888de2407d3314cad07989174201313facaa Mon Sep 17 00:00:00 2001 From: Ansh Date: Mon, 1 May 2023 12:42:31 -0700 Subject: [APP-527] setup sentry (#532) * setup sentry * add sentry to transformIgnorePatterns to fix jest issues * update README with sourcemap instructions * only enable integrations on native * fix sentry web * remove testing code * fix sentry authToken * Switch over to paul's auth tokens temporarily (lol) --------- Co-authored-by: Paul Frazee --- eas.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'eas.json') diff --git a/eas.json b/eas.json index 93db51cbe..37671c086 100644 --- a/eas.json +++ b/eas.json @@ -10,20 +10,29 @@ "ios": { "resourceClass": "medium" }, - "channel": "development" + "channel": "development", + "env": { + "SENTRY_AUTH_TOKEN": "89c975413cd543fbb683b11bec984fc2163d9a77312c41c0b4480a570f3daa65" + } }, "preview": { "distribution": "internal", "ios": { "resourceClass": "medium" }, - "channel": "preview" + "channel": "preview", + "env": { + "SENTRY_AUTH_TOKEN": "89c975413cd543fbb683b11bec984fc2163d9a77312c41c0b4480a570f3daa65" + } }, "production": { "ios": { "resourceClass": "medium" }, - "channel": "production" + "channel": "production", + "env": { + "SENTRY_AUTH_TOKEN": "89c975413cd543fbb683b11bec984fc2163d9a77312c41c0b4480a570f3daa65" + } } }, "submit": { -- cgit 1.4.1