-
Notifications
You must be signed in to change notification settings - Fork 53
Description
Describe the bug
If the application crashes upon startup, the Datadog Flutter SDK fails to upload a crash report to Datadog upon application restart. The crash report only appears after the next successful restart and usage of the app. This implies that if a crash occurs during app startup, we will never be aware that some users have experienced a crash. However, the documentation states:
If your application suffers a fatal crash, after your application restarts, the Datadog Flutter SDK uploads a crash report to Datadog. For non-fatal errors, the Datadog Flutter SDK uploads these errors with other RUM data.
Reproduction steps
Future<void> main() async {
await DatadogSdk.runApp(
DatadogConfiguration(
clientToken: 'clientToken',
env: 'DEV',
site: DatadogSite.us1,
nativeCrashReportEnabled: true,
rumConfiguration: DatadogRumConfiguration(
applicationId: 'applicationId',
reportFlutterPerformance: true,
),
loggingConfiguration: DatadogLoggingConfiguration(),
),
TrackingConsent.granted,
() async {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
FirebaseCrashlytics.instance.crash();
runApp(App());
},
);
}
SDK logs
No response
Expected behavior
After first crash on app's startup, if user opens app again - send crash report to data dog before second crash will happen again.
Affected SDK versions
2.3.0
Latest working SDK version
No response
Did you confirm if the latest SDK version fixes the bug?
No
Flutter Version
3.16.9
Setup Type
Flutter Application
Device Information
iOS 17.3.1, iPhone 12, Wifi, battery
Other relevant information
No response