我已按照文档将哨兵添加到我的 React Native Expo 应用程序,但它没有按预期工作。这里是app入口和app.json的配置。
应用程序.js
import * as Sentry from "sentry-expo";
...
Sentry.init({
dsn: "https://***.ingest.sentry.io/5956647",
enableInExpoDevelopment: true,
debug: false,
});
Sentry.Native.captureException("message");
export default class App extends React.Component {
...
应用程序.json
...
"plugins": ["sentry-expo"],
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "**",
"project": "**",
"authToken": "***"
}
}
]
}
...
请任何帮助表示赞赏。