Questions tagged [crashlytics-android]
448 questions
11
votes
1 answer
Android Fabric Crashlytics crashing with Resources$NotFoundException on app launch
android.content.res.Resources$NotFoundException
android.content.res.ResourcesImpl.getResourcePackageName
After upgrading Crashlytics from 2.6.6 to 2.9.1 we have started to notice a crash in Google Play Console.
This crash happens before Crashlytics…

user726916
- 166
- 3
11
votes
1 answer
Firebase Crashlytics not working in Android Library Module (sub-project)
I am working on a project that contains multiple Java modules. Implementing new Firebase Crashlytics went fine with main Application module, and I get crash reports in Firebase console, but I can't get it to work with these other library modules.…

Alexandar
- 235
- 3
- 8
11
votes
2 answers
Disable "Answers" but not "Crashlytics"
When installing "Crashlytics" in my Android App, it automatically installs "Answers". I only want to install "Crashlytics" and want to have "Answers" disabled. Does anyone know how to do that?
build.gradle
dependencies…

Jim Clermonts
- 1,694
- 8
- 39
- 94
11
votes
1 answer
Can't build android app with crashlytics
I am trying to upgrade from crashlytics 1.x to Fabric in an android app. I've modified the build.gradle file to match the example here - https://fabric.io/downloads/gradle
But on build I get -
Error:Failed to resolve:…

smokey_the_bear
- 1,343
- 1
- 12
- 23
10
votes
8 answers
Firebase crashlytics doesnt show crashes
Wanted to get a crash report from firebase once the app gets crashed. Is it possible to get debug mode logs separate and production crash log separate in firebase crash?...because its not really clear when we get crash from production or debug…

Meera Potdar
- 101
- 1
- 1
- 5
10
votes
2 answers
Whitelisting Fabric & Crashlytics IP
Question - would like to allow access to Fabric & Crashlytics from our server which means that we need to allow it through our firewall for access.
Can anyone share the domains or IPs that we should allow through ?
Secondly, we would also like the…

Peng Tuck Kwok
- 294
- 3
- 10
10
votes
3 answers
Unable to upload apk to Crashlytics
I'm trying to automate my app build distribution via Jenkyns and Crashlytics. I configured all as indicated on the documentation but crashlyticsUploadDistributionRelease failed with this error: "Distribution upload failed" and "WARN - Crashlytics…

Gnurant
- 446
- 3
- 9
10
votes
2 answers
Crashlytics could not find the manifest with fabric.properties
Im using classpath 'io.fabric.tools:gradle:1.+' and have a fabric.properties inside the module that I use for the fabric plugin.
When I run gradlew crashlyticsUploadDistributionProdStaging I get:
`Crashlytics could not find the…

Daniel Gomez Rico
- 15,026
- 20
- 92
- 162
10
votes
4 answers
Get user information in Crashlytics
I am using Crashlytics in my application and I wanted to get user id and email along with each crash. I did something like this:
Crashlytics.setUserEmail(tokenModel.getEmail());
Crashlytics.setUserIdentifier(String.valueOf(tokenModel.getPk()));
I…

Amit Tiwari
- 3,684
- 6
- 33
- 75
9
votes
1 answer
Android Add Firebase Crashlytics in Library Project
I am trying to configure Firebase Crashlytics in my library project. According to Firebase its not possible to configure Crashlytics in the library project.
I am getting this error message.
Crashlytics was applied to an android-library…

Akhilesh Mani
- 3,502
- 5
- 28
- 59
9
votes
5 answers
CrashlyticsCore: Expected method missing: registerOnMeasurementEventListener
I've set up Crashlytics for Android adding the dependencies in the gradle files. I use Crashlytics.logException(exception); to log exceptions. Crashlytics got activated in the Firebase console after the app threw an Exception on purpose to try…

Galya
- 6,294
- 6
- 27
- 45
9
votes
1 answer
Release build crashlytics is not sending line number in crashreport?
While debug mode development I am getting proper line number of crash while in release build I am getting crash file name but with unknown source.
I have included
-keep class com.crashlytics.** { *; }
-keep class com.crashlytics.android.**
I have…

Lokesh Tiwari
- 10,496
- 3
- 36
- 45
8
votes
1 answer
firebase sendUnsentReports() sends exceptions only after restart
I want to send info about user non-fatal exceptions through recordException() method, but default crashlytics implementation sends them only after app is restarted (which is quite a strange behaviour o_O)
I tried to disable automatic reports…

blinker
- 599
- 5
- 18
8
votes
1 answer
Firebase Crashlytics without Google Play Services
Does Firebase Crashlytics works even without Google Play Services (GPS)? If so, what's the difference between devices that has GPS and has not in terms of reporting?

dev.for.fun
- 1,198
- 8
- 22
8
votes
1 answer
Why crash-free Statistics not appearing in some app flavours?
I'm currently migrating Crashlytics from Fabric to Firebase. I generated some crashes for all my app flavours to test it. When I checked Firebase, the crashes appear listed on all flavours' tables but not all of the crash-free statistics show the…

Sidner
- 383
- 4
- 16