Michel Feinstein
Michel Feinstein
@treeshateorcs actually I found Shottr today, in another issue. I am liking it a lot so far.
My error message is a bit different `MissingPluginException(No implementation found for method reportLongTask on channel datadog_sdk_flutter.rum)` These are my Sentry logs:  Then a bunch of:  And then: ...
AFAIK Flutter JNI is the Java interop for connecting the C++ Flutter engine to the Android app. Maybe Flutter is not triggering the engine's life cycle correctly to your lib.
This looks weird, so many transitions in under 1 second. What makes me exclude a Flutter error is that only the DD plugin is raising this exception.... but on a...
I am also using `runZonedGuarded`, I initialize Sentry, then DataDog. Here's how I initialize it: ```dart Future setupDatadog() async { final configuration = DatadogConfiguration( clientToken: 'mytoken1234', env: appFlavor ?? 'no-flavour',...
Maybe contact the flutter team and ask them what might be causing this?
@fuzzybinary I suggest taking a look at how competing products work, like Sentry.
Maybe we can have something more flexible. The sdk might initialise and try to upload the last batch in a separate thread. If the app crashes, it may not finish...
I am new to Dart, but I am experienced in C# and in Java, and as far as I can see @matanlurey example will not be the same as in...
Yes, and I am not experienced enough in Dart to state safely what's going to happen if `resource.dispose()` throws an `Exception` itself. I believe that even if you make a...