f972d1889d
Signed-off-by: xsahil03x <xdsahil@gmail.com>
55 lines
1.7 KiB
Dart
55 lines
1.7 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:example/app.dart';
|
|
import 'package:example/utils/app_config.dart';
|
|
import 'package:firebase_core/firebase_core.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:sentry_flutter/sentry_flutter.dart';
|
|
|
|
import 'firebase_options.dart';
|
|
|
|
Future<void> main() async {
|
|
/// Captures errors reported by the Flutter framework.
|
|
FlutterError.onError = (FlutterErrorDetails details) {
|
|
if (kDebugMode) {
|
|
// In development mode, simply print to console.
|
|
FlutterError.dumpErrorToConsole(details);
|
|
} else {
|
|
// In production mode, report to the application zone to report to sentry.
|
|
Zone.current.handleUncaughtError(details.exception, details.stack!);
|
|
}
|
|
};
|
|
|
|
/// Captures errors reported by the native environment, including native iOS
|
|
/// and Android code.
|
|
Future<void> reportError(dynamic error, StackTrace stackTrace) async {
|
|
// Print the exception to the console.
|
|
if (kDebugMode) {
|
|
// Print the full stacktrace in debug mode.
|
|
print(stackTrace);
|
|
return;
|
|
} else {
|
|
// Send the Exception and Stacktrace to sentry in Production mode.
|
|
await Sentry.captureException(error, stackTrace: stackTrace);
|
|
}
|
|
}
|
|
|
|
/// Runs the app wrapped in a [Zone] that captures errors and sends them to
|
|
/// sentry.
|
|
runZonedGuarded(
|
|
() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
// Wait for Sentry and Firebase to initialize before running the app.
|
|
await Future.wait([
|
|
SentryFlutter.init((options) => options.dsn = sentryDsn),
|
|
Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform),
|
|
]);
|
|
|
|
runApp(const StreamChatSampleApp());
|
|
},
|
|
reportError,
|
|
);
|
|
}
|