1

我已经升级到 @sentry/react-native 最新版本,react-native 版本为 0.62.2。

我已经在使用 react-native-sentry 包和 react-native 版本 0.59.9 它工作正常。

升级后,我单独更改了导入并运行 pod install。捆绑成功后evaluating '_reactNative.Sentry.captureBreadcrumb'。如何解决这个问题?

我的问题是在将哨兵从 react-native-sentry 升级到 @sentry/react-native 并使用最新版本的 RN (0.62.2) 时,我是否需要这里提到的设置向导yarn sentry-wizard -i reactNative -p ios android https://docs.sentry.io /platforms/react-native/#linking

4

1 回答 1

1

相同的文档有一个部分用于从升级react-native-sentry@sentry/react-native

https://docs.sentry.io/platforms/react-native/#upgrading-from-react-native-sentry

基本上先你react-native unlink react-native-sentry。然后:

之后从你的 package.json 中删除 react-native-sentry:

npm uninstall react-native-sentry --save
# or
yarn remove react-native-sentry

完成后,只需@sentry/react-native按照文档描述的方式进行安装,就像它是一个新项目一样。

于 2020-06-09T15:34:25.783 回答