Force crash react native app for bugsnag 测试

Force crash react native app for bugsnag testing

有什么方法可以强制崩溃反应本机生产 apk 吗?

我知道 Crashlytics.crash(); 在 fabric 中有一个选项,但我不想使用 Crashlytics,因为我已经在使用 bugsnag。

您需要导入包 react-native-fabric 和初始文件中的另一行。

import Fabric from 'react-native-fabric';
var { Crashlytics } = Fabric;
Crashlytics.crash();

查看 Bugsnag React Native 示例应用,了解如何触发崩溃以进行测试的一些示例: https://github.com/bugsnag/bugsnag-react-native/tree/master/examples/plain

例如触发本机崩溃:

https://github.com/bugsnag/bugsnag-react-native/blob/84f9cd639c2e38231616d15a85eba153da14a70e/examples/plain/app/index.js#L16

它使用:

https://github.com/bugsnag/bugsnag-react-native/blob/master/examples/plain/app/lib/native_crash.js

如果您需要进一步的帮助,请联系 Bugsnag 支持。