Jonas Uekötter
Jonas Uekötter
Sentry currently does not have support for offline caching. I think that we might be able to remove some code on the native side when doing offline caching in Dart....
We need to test - [x] `split-debug-info` and `obfuscate` on macOS - [ ] `split-debug-info` and `obfuscate` on Linux - [ ] #2286 `split-debug-info` and `obfuscate` on Windows Those options...
The code from https://github.com/getsentry/sentry-dart/blob/954825b84f7b84f383bea614ba303b868595badb/dart/lib/src/sentry_client.dart#L290-L314 can be rewritten as follows ```dart Future _processEvent( SentryEvent event, { dynamic hint, required List eventProcessors, }) async { SentryEvent? processedEvent = event; for (final processor...
From https://github.com/getsentry/sentry-dart/runs/6113791214?check_suite_focus=true > Warning: It seems that this action doesn't have the required permissions to call the GitHub API with the token you gave. This can occur if this repository...
I would like to be able to use the frames integration on macOS. Currently that's not possible because it depends on native code, which is also not able to provide...
_Platform:_ - [ ] Dart - [x] Flutter Android or iOS - [ ] Flutter Web _IDE:_ - [ ] VSCode - [ ] IntelliJ/AS - [ ] XCode -...
There should be a way to remove an attachment, which was previously added, from the scope. This prevents that the same attachment is sent for multiple crash reports. It's also...
Flutter allows the developer to read how long it took for a frame to draw. See [FrameTiming](https://api.flutter.dev/flutter/dart-ui/FrameTiming-class.html). It would be nice if Sentry attaches a listener and sends events or...
[This API](https://api.flutter.dev/flutter/dart-io/HttpOverrides-class.html) might be a good starting point. Sometimes Flutter makes HTTP requests itself. For example, for the [network image widget](https://api.flutter.dev/flutter/widgets/Image/Image.network.html). This would allow to track them. A few gotchas:...
Sentry for Dart currently does not support session data used for crash free rate. (note this is NOT about session replay) On Flutter for iOS, Android and macOS this is...