Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Firebase Crashlytics, Where can I see user ID in the Reported Crashes?

Firebase Crashlytics has a feature for customizing crash reports. In my case, I'm reporting the internal user ID so that I can pull up more information to debug the issue.

I'm not able to see the user ID anywhere in the Firebase Crashlytics tab.

I call this in

Application.onCreate()

Crashlytics.setUserIdentifier(uid);
like image 829
Nizam Mohideen Avatar asked Mar 26 '18 07:03

Nizam Mohideen


People also ask

How do I check my Firebase Crashlytics report?

Go to the Crashlytics dashboard of the Firebase console to see your test crash.

What happened to Crashlytics?

In January 2017, Crashlytics and Fabric were acquired by Google. In September 2018, Google announces that Fabric will be deprecated and developers should use Crashlytics via Firebase.

How does Firebase Crashlytics work?

Firebase Crashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. Crashlytics saves you troubleshooting time by intelligently grouping crashes and highlighting the circumstances that lead up to them.


1 Answers

You can see it here:

enter image description here

Or try to search reports by user ID here: enter image description here

If the search result is empty, it means your "test crash" hasn't synced yet.

like image 172
Khang .NT Avatar answered Oct 21 '22 00:10

Khang .NT