Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/xaldarof/flutter-telegram-crashlytics
- Owner: xaldarof
- License: other
- Created: 2022-12-09T18:40:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-03T06:20:49.000Z (over 1 year ago)
- Last Synced: 2023-08-09T13:58:32.003Z (about 1 year ago)
- Topics: crashlytics, crashreporter, flutter, telegram, telegram-bot
- Language: Dart
- Homepage:
- Size: 378 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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) DateExample 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))