Questions tagged [crashlytics-android]

448 questions
8
votes
2 answers

Fabric Crashlytics reports display some letters instead of classes names of my Android App

In Fabric Crashlytics reports I see some letters instead of classes names. for example when I see "MainActivity" I understand that a crash occured in MainActivity.java, but now I see letter "a" , "e" or "w" instead of class name and I can't…
8
votes
3 answers

How to set user information to Crashlytics api in Android

I am trying to set user information to crash reports in crashlytics in Android App, so that it will help me to find out which of our users experienced a given crash. I have explored and found there are 3 APIs can set user information in crash…
Annada
  • 1,075
  • 1
  • 18
  • 21
7
votes
3 answers

java.lang.RuntimeException: Unable to create application com.app.MyApp: java.lang.NullPointerException: FirebaseCrashlytics component is not present

Getting this crash on only release build with r8 enabled on migrating from crashlytics to firebase SDK and upgrading gradle plugin version Note : I have multidex dependencies defined and set in build.gradle and also in the application class. This…
Nitin Mesta
  • 1,504
  • 19
  • 32
7
votes
1 answer

Firebase Crashlytics Console not showing crashes on neither new or old builds anymore

i am having an issue with firebase Crashlytics where crashes are not showing up but the crash free rate percentage is. The Problem One day, on what seemed like a random day, all Crashlytic logs stopped showing up on the Firebase Crashlytics console.…
7
votes
4 answers

CrashlyticsInitProvider skipping initialization

I am currently migrating an app from Fabric to Firebase Crashlytics and after updating all the different libraries as stated in the official documentation, I am getting a log message stating that the Crashlytic initialization has been skipped:…
7
votes
0 answers

After setting up Crashlytics for NDK, I cannot see line numbers or symbols

Hello after installing crashlytics in my Android app I have been able to successfully detect crashes with stacktrace in Java. After setting up the NDK however, my stack traces on Crashlytics only say: 0 libc.so (Missing) 1 libart.so (Missing) 2…
7
votes
4 answers

Where does Crashlytics.log(""); go?

I'm trying to set up my app with firebase+crashlytics for having a better error dashboard. All the firebase stuff is already working and I'm able to access the features I tested crashlytics with: Crashlytics.getInstance().crash(); // Force a…
7
votes
2 answers

Crashlytics Android NDK: missing all symbols in crash reports

Our native Crashlytics crash reports are missing all symbol information as of late. I had hoped that the latest Crashlytics NDK would resolve the issue, but it does not. I see that there is a similar query out there, but in this case I am not using…
7
votes
1 answer

Handle grouping of errors in Fabric/Crashlytics

I have a project that uses Fabric/crashlytics. In order to be able to detect all runtime errors in production, I want to send (non-fatal) exceptions to Crashlytics using: Crashlytics.logException(new RuntimeException("some identifiable error…
Halvtysk
  • 257
  • 2
  • 10
7
votes
0 answers

Crashlytics NDK 2.0.1 doesn't log native crashes

I'm trying to migrate Crashlytics 2.6.7 -> 2.8.0 and Crashlytics NDK 1.1.6 -> 2.0.1 But I encountered the issue that each time my app is restarted after native crash, Crashlytics writes to logcat something like this: 12-18 19:48:33.499…
John Smith
  • 605
  • 4
  • 14
7
votes
1 answer

AAPT2 link failed Crashlytics

Updated to Android studio 3 and am now getting the following error Error:/app/build/intermediates/res/merged/debug/values/com_crashlytics_build_id.xml uncompiled XML file passed as argument. Must be compiled first into .flat…
MobileMon
  • 8,341
  • 5
  • 56
  • 75
7
votes
2 answers

Crashlytics NDK symbol building from command line

I'm trying to add Crashlytics support to my Android project, which uses NDK and gradle CMake. This means that I need symbols for my shared projects. So if I want to create the symbols for release build I'll call gradlew…
7
votes
0 answers

Fabric(crashlytics) plugin wont work in android studio

Im having trouble adding fabric to android studio. Right now I have android studio v1.5.1. I've tried installing "fabric" plugin from android studio, plugin section and also tried downloading the crashlytics plugin which installs well but when I…
7
votes
1 answer

Fabric Beta and APK splits

I'm splitting my app based on ABI, not on density, like so: splits { abi { enable true reset() include 'x86', 'armeabi', 'armeabi-v7a', 'mips', 'arm64-v8a' universalApk true } } I…
6
votes
1 answer

Firebase Crashlytics not uploading crashes for release apk

I migrated to Firebase Crashlytics SDK. The debug app work's fine, the Crashlytics gets initialized and when there is a crash, after restarting the app it uploads the crashes to https://crashlyticsreports-pa.googleapis.com. But when I create a…
user2234
  • 1,282
  • 1
  • 21
  • 44