Questions tagged [crashlytics-android]
448 questions
6
votes
1 answer
Proguard with Crashlytics
We have added crashlytics in our android application, and we are using proguard. So, as the crashlytics documentation says, we have added the following code in our proguard configuration file:
-keep class com.crashlytics.** { *; }
-keep class…

FVod
- 2,245
- 5
- 25
- 52
5
votes
4 answers
Android Studio : how to add 'App quality insight' window to see Crashlytics data in Android Studio?
It is mentioned here:
https://firebase.blog/posts/2022/06/new-product-updates-to-firebase-crashlytics
that I can see my Crashlytics crashes directly in Android Studio thanks to the 'App quality insight' window.
As explained in the previous link, I…

toto_tata
- 14,526
- 27
- 108
- 198
5
votes
2 answers
Android Crash Reporting: much more crashes reported in Google Play Console than Crashlytics
I have a problem as I have much more crashes reported in Google Play Console than in Firebase Crashlytics. Around 15% in Google Play Console versus 2% in Crashlytics.
Note that most crashes come from C++ code (NDK/JNI).
I don't know which tool gives…

toto_tata
- 14,526
- 27
- 108
- 198
5
votes
0 answers
How to show Crashlytics issue with specific event_id?
In my current project I'm exporting Android app's Crashlytics crash data to BigQuery. I'm trying to trace the issue with a native library, and multiple crashes from different native libraries are getting associated under the same issue id. I'm…

shevchen
- 51
- 1
5
votes
0 answers
Firebase Crashlytics without Analytics
I'm working on an android app and because of privacy policy we should have opt in and opt out option for crashlytics and analytics. I've configured the crashlytics and everything works fine. When I disable crashlytics I don't receive any crash…

Pako1
- 247
- 2
- 12
5
votes
3 answers
Firebase Crashlytics : Settings request failed - After migrate from fabric
After I migrate to crashlytics from fabric, crash reports does not shown on Firebase console anymore.
I followed upgrade document for migration.
I tried force crash to test and i logged with adb logcat -s FirebaseCrashlytics, I noticed an error…

erkan demir
- 1,386
- 4
- 20
- 38
5
votes
3 answers
FirebaseCrashlytics: Send to Reports Endpoint for non-native reports disabled
I connected FirebaseCrashlytics as described here for Android.
Then I tried to send a test exception and got these lines in the FirebaseCrashlitycs log:
...
FirebaseCrashlytics: Attempting to send crash report at time of…

Maxim Firsoff
- 2,038
- 22
- 28
5
votes
1 answer
Crashlytics is logging crashes with the wrong line number
I've been receiving a number of crash reports from a number of users on different devices, all happening on line 4 of my app:
But line 4 is just an import:
I'm running Android Studio 3.6.1 on a Linux laptop.

FractalBob
- 3,225
- 4
- 29
- 40
5
votes
1 answer
New crashlytics (com.google.firebase.crashlytics.FirebaseCrashlytics) not working anymore on non-Google Play devices?
I updated from the Fabric Crashlytics to the new com.google.firebase.crashlytics.FirebaseCrashlytics beta yesterday on two of my apps.
Unlike the old one, now Crashlytics doesn't seem to work anymore on devices that doesn't have Google Play services…

Stéphane
- 1,518
- 1
- 18
- 31
5
votes
4 answers
Crashlytics Fabric.io deprecated
Does anyone know what the proper way to implement Crash report using Firebase in Android application?
I have read Firebase crashlytics doc in that mention implement Fabric.io. Fabric.io is deprecate and in there document mention removed fabric.io…

Pratik
- 30,639
- 18
- 84
- 159
5
votes
1 answer
Fabric Crashlytics NDK stack backtraces missing frames
I have an Android Studio project that includes multiple native shared libraries.
I followed the steps documented here to integrate Crashlytics NDK support and upload symbols to Fabric:
https://fabric.io/downloads/gradle/ndk
The crashes are…

Derek Rodrigues
- 51
- 1
5
votes
1 answer
Android's StrictMode penaltyListener gives NoClassDefFoundError
I'm adding StrictMode to my app and it works great until I add a custom ViolationListener.
It seems it cannot find the callback I'm providing and detects that as an error, too.
Could you give me a hand with that?
The following code works just…

Camarero
- 652
- 4
- 9
5
votes
2 answers
Crashlytics not working after update Android Studio to 3.3
So also gradle plugin updated to 3.3 and Gradle updated to 4.10. After that, Crashlytics stopped working with error:
Crashlytics found an invalid API key: null
Any ideas? I am forced to revert Gradle to make it working again. Crashlytics configured…

user1209216
- 7,404
- 12
- 60
- 123
5
votes
2 answers
Crashlytics with StrictMode enabled (detect all) gives "untagged socket detected"
I've tried adding Crashlytics to my app, which already has StrictMode enabled with detectAll(). The result was Untagged socket detected; use TrafficStats.setThreadSocketTag() to track all network usage.
Full Stack:
E/StrictMode:…

MikeL
- 2,756
- 2
- 23
- 41
5
votes
3 answers
Unable to extract Crashlytics build info from the dropped APK
I'm trying to upload an .apk file to Crashlytics to be distributed with the 'Beta' app, but I'm getting the following error when dropping my .apk in the upload menu:
Unable to extract Crashlytics build info from the dropped APK. Please make sure…

Daan
- 147
- 15