File tree Expand file tree Collapse file tree 2 files changed +7
-15
lines changed Expand file tree Collapse file tree 2 files changed +7
-15
lines changed Original file line number Diff line number Diff line change 1+ # Example .env file for empower_flutter
2+ # Copy this file to .env and fill in your actual values
3+
4+ SENTRY_AUTH_TOKEN = your_auth_token
5+ SENTRY_DSN = your_dsn
6+ SENTRY_RELEASE = your_release_version_or_git_sha
7+ SENTRY_ENVIRONMENT = your_environment
Original file line number Diff line number Diff line change @@ -11,21 +11,6 @@ import 'package:logging/logging.dart';
1111import 'se_config.dart' ;
1212import 'dart:io' ;
1313
14- // Sentry constants
15- // ignore: constant_identifier_names
16- const SENTRY_RELEASE = String .fromEnvironment (
17- "SENTRY_RELEASE" ,
18- defaultValue: '614997d2cf7b57dfa7daba24a2fc739f4eb5b7bf' ,
19- );
20- // ignore: constant_identifier_names
21- const SENTRY_ENVIRONMENT = String .fromEnvironment (
22- "SENTRY_ENVIRONMENT" ,
23- defaultValue: 'staging' ,
24- );
25- // ignore: constant_identifier_names
26- const DSN =
27- 'https://[email protected] /6453502' ;
28-
2914final GlobalKey <NavigatorState > navigatorKey = GlobalKey <NavigatorState >();
3015
3116FutureOr <SentryEvent ?> beforeSend (SentryEvent event, Hint ? hint) async {
You can’t perform that action at this time.
0 commit comments