We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sentry_dart_plugin: 1.5.0 Flutter: 3.10.3
void main() async { await SentryFlutter.init( (options) { options.dsn = 'put your dsn here'; options.tracesSampleRate = 1.0; }, appRunner: () { WidgetsFlutterBinding.ensureInitialized(); runApp(const MyApp()); }, ); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Sentry Test', home: Scaffold( body: Center( child: TextButton( onPressed: () => throw Exception('Exception from release to test Sentry'), child: const Text('Throw Exception'), ), ), ), ); } }
pubspec.yaml
sentry: upload_source_maps: true upload_sources: true project: <your project name> org: <your organization name> url: <your url> wait_for_processing: true ignore_missing: false
SENTRY_AUTH_TOKEN
flutter build web --source-maps
dart pub global activate sentry_dart_plugin
dart pub global run sentry_dart_plugin
flutter run --release
The exception shows in issues with the correctly decoded stack trace
The issue name is "minified:GO". Stack trace is not decoded properly:
The text was updated successfully, but these errors were encountered:
@Snahi Yep we are aware, it's a dupe of getsentry/sentry-dart#1565 (comment) Thanks for raising this, please upvote that issue.
Sorry, something went wrong.
No branches or pull requests
Environment
sentry_dart_plugin: 1.5.0
Flutter: 3.10.3
Steps to Reproduce
pubspec.yaml
SENTRY_AUTH_TOKEN
flutter build web --source-maps
dart pub global activate sentry_dart_plugin
dart pub global run sentry_dart_plugin
flutter run --release
Expected Result
The exception shows in issues with the correctly decoded stack trace
Actual Result
The issue name is "minified:GO". Stack trace is not decoded properly:
The text was updated successfully, but these errors were encountered: