我无法在岗亭中显示我的原始代码。
我遇到以下错误
Discarded invalid parameter 'type'
Source code was not found for app:///crna-entry.delta?
platform=ios&dev=true&minify=false`
我已经按照文档中的说明配置了app.json
。
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "xxxxx",
"project": "xxxxxxx",
"authToken": "xxxxxxxxxx"
}
}
]
}
答案 0 :(得分:0)
我回答了这个问题here
如果您正在使用expo。您应该使用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/ 然后运行expo publish
,它会自动上传源地图。
本地测试
确保已启用expo开发。 添加行;
Sentry.enableInExpoDevelopment = true;
Sentry.config(publicDsn, options).install();
使用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'