Questions tagged [crashlytics]

a mobile service for building crash reporting for iOS and Android, part of Firebase

Crashlytics is a mobile service for building crash reporting for iOS and Android.

Crashlytics and Fabric are now owned by Google and can be used with Google's Firebase product.

Resources

Crashlytics homepage

Fabric homepage

Tutorial - Get started with Firebase Crashlytics

3012 questions
1
vote
0 answers

Non-fatal Exception: java.io.FileNotFoundException -- Android 10 11 12

I write this function to PDFfile form URI but it throw 2 exception with Android 10 11 12. From Firebase Crashlytics 45% Xiaomi 14% samsung 12% oneplus 12% realme 38% Android 11 34% Android 12 19% Android 10 7% Android 9 1) …
Laksh Lathiya
  • 322
  • 2
  • 12
1
vote
1 answer

'RCTDevLoadingViewProtocol.h' file not found after adding firebase crashlytics

My problem started when I wanted to add the module @react-native-firebase/crashlytics. I had errors when I tried to add the module, so I hat to execute the following commands rm -rf ios/Podfile.lock pod install --repo-update and I had to add the…
user567
  • 3,712
  • 9
  • 47
  • 80
1
vote
1 answer

Add crashlytics to react native project throws an error

I am using multiple firebase services on my react native project. Now I tried to add crashlytics yarn add @react-native-firebase/crashlytics But I get an error [!] CocoaPods could not find compatible versions for pod "Firebase/CoreOnly": In…
user567
  • 3,712
  • 9
  • 47
  • 80
1
vote
1 answer

Calculate crash free sessions based on analytics and crashlytics data (BigQuery)

Assuming the following definitions are in place: The crash free sessions number is the percentage of sessions in the specified time range not ended by a crash of the application. The crash free users is the percentage of distinct users who did not…
ror
  • 3,295
  • 1
  • 19
  • 27
1
vote
4 answers

catch (error) isn't called after FirebaseCrashlytics.instance.crash() with flutter

Is there a way to save data just before a crash with sharedpreference? I search to deactivate a function only if a crash happens. So, to disable the function, I need to detect the crash. I'd like to use crash analytics to accomplish that, is that…
Nitneuq
  • 3,866
  • 13
  • 41
  • 64
1
vote
1 answer

Crashlytics doesn't show in Firebase

I have an already published app as a product that using Firebase for messaging or analytics. Now I want to activate Crashlytics. The debug mode was already activated and after a test crash nothing happened :-| % adb shell setprop…
Parissa Kalaee
  • 606
  • 1
  • 9
  • 17
1
vote
1 answer

How to get issue closed status from bigquery?

I have integrated BigQuery in my Firebase project, how should I get the issue closed state ? I read Export Firebase Crashlytics data to BigQuery carefully before submitting a question.
Zachary
  • 63
  • 9
1
vote
0 answers

dispatchTouchEvent() is crashing on Vivo device, Android 12 with 'java.lang.String java.lang.Object.toString()'

Firebase Crashlytics is reporting the following log specifically on Vivo devices, Android 12 OS. Any help would be appreciated, thank you. Fatal Exception: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String…
1
vote
1 answer

How to reproduce UIDocumentUIPickerViewController NSCocoaErrorDomain Code=260?

I am presenting the UIDocumentUIPickerViewController from a view controller like this: let documentPicker = UIDocumentPickerViewController( documentTypes: [String(kUTTypePDF), String(kUTTypeImage)], in: .import ) documentPicker.delegate =…
1
vote
1 answer

firebase-crashlytics will get Android_Id, how can I change the timing of getting it, or not get it

I want to change the timing of getting anroid_id The following is the call…
Zhuoyuan.Li
  • 318
  • 2
  • 10
1
vote
2 answers

Switched Firebase Crashlytics from CocoaPods to Swift Package now Simulator won't build on a M1 Mac

Just removed Crashlytics from the podfile, then added it as a Swift Package. Built for an actual device just fine. But when I switch to the Simulator, no go (and tried deleting Derived folders etc - no change). Another dev using Xcode 13.2.1 on an…
David H
  • 40,852
  • 12
  • 92
  • 138
1
vote
4 answers

(Flutter) Caused by java.lang.NoSuchMethodException (Crashlytics)

My app crashed immediately after launch, and Crashlytics showed this stack: Fatal Exception: java.lang.ExceptionInInitializerError keyboard_arrow_up com.google.android.gms.measurement.internal.zzij.
user16525780
  • 319
  • 1
  • 4
  • 11
1
vote
1 answer

Errors occur in some specific mobiles on crashlytics

There are some errors which only occur in some specific mobiles and that are shown in crashlytics. In my mobile device app working fine but there are some mobiles where the screen is crashing. I am unable to identify how to resolve that issue…
User454
  • 11
  • 1
1
vote
1 answer

Why user id section not show in Firebase Crashlytics dashboard sometime?

I set the user id value as below code. (flutter) in ios section Crashlytics dashboard alway show user id but why android section show user id only sometime. Is there a way to make it alway show? Future handleError(Object error, StackTrace?…
1
vote
1 answer

Quit an app (swift) programmatically without crash log in Firebase

I know this is against Apple’s Human Interface Guidelines but I need to quit an app programmatically but I don’t want to use fatalError(…) because that reports a crash in Firebase’s Crashlytics. I’m considering replacing fatalError(…) with exit(…)…
Pavol Ho
  • 23
  • 2