Jonas Uekötter

Results 190 comments of Jonas Uekötter

> Android should have a flag in `AndroidManifest.xml`. Is it possible to access flags from those during runtime? Yeah, but not from Flutter, just from the native parts. I would...

If it's a Flutter background isolate (see this [guide](https://medium.com/flutter/introducing-background-isolate-channels-7a299609cad8) on how to set it up), you can just initialize Sentry again. In that case, you also don't need to attach...

There's unfortunately nothing that can be done to make it more automatic as of now since that's a limitation of Dart (& Flutter), not of Sentry. That being said, you...

This is already implemented in the Dart SDK: https://github.com/getsentry/sentry-dart/blob/main/dart/lib/src/event_processor/deduplication_event_processor.dart

According to https://github.com/dart-lang/http/issues/828 it doesn't quite work that well for Flutter. It still works for pure Dart though.

Actually, the better example is [sentry_link](https://github.com/ueman/sentry-dart-tools/tree/main/sentry_link). [sentry_graphql](https://github.com/ueman/sentry-dart-tools/tree/39c39b0e98c2b791f536f1ad04e3d7f4e777e6f8/sentry_graphql) (permalink to before deletion) doesn't really add value over the link integrations and I've deleted it since. The link integration is also more...

Also, this https://github.com/getsentry/sentry/issues/33723 issue, but I don't think it will be tackled soon.

> The SDK would need to read and deserialize the payload, we'd need to decide if we actually wanna do it and if the response payload is standardized across different...

This problem arises due to the image loading being async. So the correct solution would be to do the equivalent of `tester.pumpAndSettle()` from widget tests in the `renderFlutterWidget()` method. Probably...

@sorokinDev Can you share your code?