第一种方式
如果您使用博览会。你应该使用sentry-expo
你可以在这里找到的包:sentry-expo
把这个钩子放到你的expo json (app.json)文件中
{
"expo": {
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "<your organization name>",
"project": "<your project name>",
"authToken": "<your auth token here>"
}
}
]
}
}
organization
你可以在这里找到 名为“组织名称”的https://sentry.io/settings/
project
输入你的项目名称,你可以在这里找到: https ://sentry.io/organizations/ORGANIZATION_NAME/projects/
authToken
使用此 url https://sentry.io/api/创建一个 authToken
然后运行expo publish
,它会自动上传源地图。
本地测试
确保您启用了博览会开发。添加行;
Sentry.enableInExpoDevelopment = true;
Sentry.config(publicDsn, options).install();
因此
在哨兵上,只有 ios,您可以看到发生错误的源代码。
但是:无法查看 ANDROID 的源代码
https://github.com/getsentry/react-native-sentry/issues/372
第二种方式(手动上传)
使用 API https://docs.sentry.io/platforms/javascript/sourcemaps/
curl -X POST \
https://sentry.io/api/0/organizations/ORG_NAME/releases/VERSION/files/ \
-H 'Authorization: Bearer AUTH_TOKEN' \
-H 'content-type: multipart/form-data' \
-F file=@script.min.js.map \
-F 'name=~/scripts/script.min.js.map'