-
Is it possible to check if Crashlytics reporting is enabled in v5? if (!__DEV__) {
firebase.crashlytics().enableCrashlyticsCollection();
} My app has an issue reporting page that I'd like to be able to show if error reporting is enabled on. Is there any way to check that so that I can display to the user that crash reports are on? I know that I could probably just show it based on |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
v5 is well out of support, and you are up against a migration deadline for crashlytics, the new version of which is only available on current stable versions: https://firebase.google.com/docs/crashlytics/get-started?platform=ios
migrate to current stable versions, there are APIs that do what you want https://rnfirebase.io/reference/crashlytics#isCrashlyticsCollectionEnabled |
Beta Was this translation helpful? Give feedback.
v5 is well out of support, and you are up against a migration deadline for crashlytics, the new version of which is only available on current stable versions: https://firebase.google.com/docs/crashlytics/get-started?platform=ios
migrate to current stable versions, there are APIs that…