Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xaldarof/flutter-telegram-crashlytics

TCrashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. Set your bot token and chat id to get all crash reports through telegram bot.
https://github.com/xaldarof/flutter-telegram-crashlytics

crashlytics crashreporter flutter telegram telegram-bot

Last synced: 27 days ago
JSON representation

TCrashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. Set your bot token and chat id to get all crash reports through telegram bot.

Awesome Lists containing this project

README

        

TCrashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix
stability issues that erode your app quality. Set your bot token and chat id to get all crash
reports through telegram bot.

[Open pub.dev](https://pub.dev/packages/flutter_telegram_crashlytics)

```dart

void main() async {
var reporter = TCrashReporter();
var testChatId = "-1001608228640";
var testBotToken = "5790685024:AAHvppoippppppppppppUA";

reporter.initialize(testBotToken, testChatId);
reporter.scope(() {
runApp(const TCrashReporterExampleApp());
});
}

```

You will get reports like this:
1) All information about device
2) Exception message
3) Date

Example exception report

![alt text](https://github.com/xaldarof/flutter-telegram-crashlytics/blob/main/assets/report_image.png)

If user is not connected to the internet,all exceptions will be cached while connection will not
available on this device, also library will check connection every 3 hours to try sync data.

I would be very happy if you give me your own suggestion:
([Twitter](https://www.twitter.com/xaldarof))
([Instagram](https://www.instagram.com/xaldarof))
([Telegram](https://www.t.me/xaldarof))