Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions samples/expo/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,13 @@
"default": "development"
}
},
"eas": {
"projectId": "00000000-0000-0000-0000-000000000000"
}
"eas": {}
},
"owner": "__OWNER__",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we hide this file and create a new one that is git ignored so we can easily test with eas builds?

"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/00000000-0000-0000-0000-000000000000"
}
}
}
}
5 changes: 4 additions & 1 deletion samples/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
"export:web": "expo export --dump-sourcemap --clear --platform web",
"prebuild": "expo prebuild --clean --no-install",
"set-version": "npx react-native-version --skip-tag --never-amend",
"eas-build-pre-install": "npm i -g corepack && yarn install --no-immutable --inline-builds && yarn workspace @sentry/react-native build"
"eas-build-pre-install": "npm i -g corepack && yarn install --no-immutable --inline-builds && yarn workspace @sentry/react-native build",
"eas-update-configure": "eas update:configure",
"eas-update-publish-development": "eas update --channel development --message 'Development update'",
"eas-build-development-android": "eas build --profile development --platform android"
},
"dependencies": {
"@sentry/react-native": "6.14.0",
Expand Down
Loading