Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Crash report email

I have implemented Firebase crash report basic setup for my project and it worked perfectly without any problem. Is it possible to get those error report on my email? I am unable to find email sending feature for non fatal or fatal error on crash report dashboard.

FirebaseCrash.report(new Exception("My first Firebase non-fatal error on Android"));

like image 471
dev Avatar asked Jul 21 '16 12:07

dev


People also ask

How do I know if Firebase is crashing?

Open your app from the home screen of your test device or simulator. In your app, press the "Test Crash" button that you added using the code above. After your app crashes, run it again from Xcode so that your app can send the crash report to Firebase.

What is Firebase crash reporting?

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.

How do I access Crashlytics logs?

Crashlytics associates the logs with your crash data and displays them in the Crashlytics page of the Firebase console, under the Logs tab.


2 Answers

Yes, you can get error reports on your email, in 5 simple steps:

  1. Go to the subscriptions tab on the Firebase console.
  2. Select your project
  3. You'll see two options: one for new clusters and one for regressions.
  4. When you click on one of those, you'll see an email checkbox. Check it and click on save.
  5. Done, now you can get the reports on the email account that you used to sign up for Firebase.
like image 189
Rosário Pereira Fernandes Avatar answered Sep 21 '22 13:09

Rosário Pereira Fernandes


  1. Go to firebase console

  2. Click on bell icon at the top-right corner

  3. Select your project from the dropdown list
  4. Click on "Manage your alerts"

Select checkbox under email column to receive notifications.

like image 38
Abhishek Kulkarni Avatar answered Sep 19 '22 13:09

Abhishek Kulkarni