0

有什么办法可以强制崩溃反应原生生产 apk 吗?

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

4

2 回答 2

2

查看 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 支持。

于 2019-05-17T12:40:53.780 回答
0

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

import Fabric from 'react-native-fabric';
var { Crashlytics } = Fabric;
Crashlytics.crash();
于 2019-05-17T12:06:26.090 回答