Is there any way we can force crash react native production apk ?
I know there is one option with Crashlytics.crash();
in fabric but i don't want to use Crashlytics as i am already using bugsnag.
Is there any way we can force crash react native production apk ?
I know there is one option with Crashlytics.crash();
in fabric but i don't want to use Crashlytics as i am already using bugsnag.
You need to import the packages react-native-fabric and another line in initial file.
import Fabric from 'react-native-fabric';
var { Crashlytics } = Fabric;
Crashlytics.crash();