Last updated:
0 purchases
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.
Open pub.dev
void main() async {
var reporter = TCrashReporter();
var testChatId = "-1001608228640";
var testBotToken = "5790685024:AAHvA1nscE5-85-6N9nlWHDfl36DiS4GeUA";
reporter.initialize(testBotToken, testChatId);
reporter.scope(() {
runApp(const TCrashReporterExampleApp());
}, initialize: () {
//[important] don't forget to add this line
WidgetsFlutterBinding.ensureInitialized();
});
}
copied to clipboard
You will get reports like this:
All information about device
Exception message
Date
Example exception report
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)
(Instagram)
(Telegram)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.