Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crash Report for Flutter

Tags:

I am new to flutter. I developed one Wallpaper App using flutter and upload in playstore. Now i need to track crash report for that app. In Android have crashlytics to all report crash and more fearure's. Is crashlytics support in flutter ?. I looked sentry plugin but it's not free. Any help Appreciable.

like image 777
Magesh Pandian Avatar asked Jun 13 '18 10:06

Magesh Pandian


People also ask

How do I enable Crashlytics in flutter?

Steps for Integrating Crashlytics on Firebase Console Step – 1 -> Go to the 'Release & Monitor' Section in the side panel and click on 'Crashlytics'. You will see the Crashlytics Dashboard as shown. Step – 2 -> After adding the applications, we will have to enable the Crashlytics from the 'Enable Crashlytics' button.

What is Crashlytics flutter?

Crashlytics helps you to collect analytics and details about crashes and errors that occur in your app. It does this through three aspects: Logs: Log events in your app to be sent with the crash report for context if your app crashes.

How do I report a bug on flutter?

To report a Flutter crash or bug, create an issue in the flutter/flutter project. To report a problem with the website, create an issue in the flutter/website project.


2 Answers

Sentry is currently the only solution provided by the Flutter team.

Crashlytics support is planned https://github.com/flutter/flutter/issues/14765

update

There is now a community package with crashlytics support as well https://pub.dartlang.org/packages/flutter_crashlytics

like image 134
Günter Zöchbauer Avatar answered Sep 20 '22 23:09

Günter Zöchbauer


note this:

since April 2020 fabric crashlytics panel will no longer be supported so you have to use firebase crashlytics panel instead

solution:

for that flutter team now has created firebase_crashlytics. so you can use this library instead of the flutter_crashlytics which is the community version.

like image 31
alireza easazade Avatar answered Sep 21 '22 23:09

alireza easazade