diff --git a/docs/crashlytics/quick-start.md b/docs/crashlytics/quick-start.md index 5bb311fa..e3ec9052 100644 --- a/docs/crashlytics/quick-start.md +++ b/docs/crashlytics/quick-start.md @@ -53,6 +53,14 @@ Once installed, import the Crashlytics package into your project: import crashlytics from '@react-native-firebase/crashlytics'; ``` +You need to import the library even if you're not using any functions of the Crashlytics SDK. By doing this, you enable the listener that get the JS stacktrace into the Crash Reporting console in Firebase + +Consider putting this in `index.js` file. + +```js +import '@react-native-firebase/crashlytics'; +``` + The package also provides access to the firebase instance: ```js