I am at present making an attempt to arrange Firebase Crashlytics for a Flutter iOS app. I adopted the directions right here and added a button to my app that may throw an exception when it’s pressed:
TextButton(
onPressed: () {
throw Exception();
},
baby: Textual content("Set off Error",
model: TextStyle(
coloration: Theme.of(context).colorScheme.error,
fontSize: 18,
)))
I’ve the error handler set like this:
// Cross all uncaught "deadly" errors from the framework to Crashlytics
FlutterError.onError = (errorDetails) {
FirebaseCrashlytics.occasion.recordFlutterError(errorDetails);
};
I set a breakpoint within the VSCode debugger within the error handler and after I press the button I can see that recordFlutterError
is getting known as. Nonetheless, the one factor I see even after a few days of ready is that this:
I went into XCode and set the flag for debug logging as described right here however I do not know the place to see the debug logs.
Any concepts as to what will be occurring?