Crashlytics Does Not Show Crashes

Crashlytics does not show crashes

Checked the following terms,

  1. Make sure Crashlytics SDK line is after all other 3rd-party SDK lines. (it needs to be last one called in your appDidFinishLaunching method.)

  2. Force a crash and then relaunch the app. Xcode must be disconnected to stop it from intercepting the crash report. To disconnect Xcode, follow the instructions here.

  3. If you're using [Crashlytics sharedInstance] crash]; to test crashing, make sure it's not in the appDidFinishLaunching method.

These are already mentioned in support section, Here is additional ones -

  1. Check in organization -> Your App -> Missing dSYM, Is it showing any missing dSYM file

Sample Image

if yes, Then do the following step

  1. Right Click on your archive -> Show in Finder -> Right click on file and click on Show package contents
  2. Right click on dSYM file - > Show package contents -> Contents -> Resources -> DWARF (Open in terminal)
  3. Run command dwarfdump --uuid "file name you saw there in dwarf folder"

Sample Image

This will show all the associated UUID, And if any listed UUID matched with the one mentioned in missing dSYM id then just compress the dSYM folder and upload it on crashlytics Missing dSYM segment.

This step is important cause sometimes the dSYM file we extract from organizer doesn't contain correct UUID. And after uploading the wrong one we wait for its updations. So it's better to make sure you are uploading the right dSYM file.

Other than aforementioned things, Bitcode property and Debug Information Format in Build Settings also affect the crash reporting.

iOS Firebase Crashlytics not showing up crashes in Dashboard

To someone still struggling with the issue here is what resolved the issue for me.

  1. I deleted the GoogleService-Info.plist and added it again.

  2. I tried the crash on my welcome screen rather than in one of the
    screens of my tab bar controller as I believe from there it's unable
    to find GoogleServiceInfo.plist file so it worked.

Firebase Crash report not appearing in android after Firebase crashlytics update

I also faced the same issue and to solve this I did the following steps.

  1. After new Crashlytics SDK were added. Download the new Google-services.json file from the Firebase console (you can get it from Project Settings in Firebase console)

  2. Force a crash for first time.

     throw new RuntimeException("Test Crash");
  3. Run your app.It will crash because we were added above Runtime exception.

Now check on your Firebase console. You can see the crash report

Refer HERE



Related Topics



Leave a reply



Submit