Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(firebase_crashlytics): add note for crash() that the app needs to be restarted to send a crash report #9586

Merged
merged 10 commits into from Oct 4, 2022
Expand Up @@ -59,7 +59,8 @@ class FirebaseCrashlytics extends FirebasePluginPlatform {
/// This should only be used for testing purposes in cases where you wish to
/// simulate a native crash to view the results on the Firebase Console.
///
/// Note: crash reports will not include a stack trace.
/// Note: crash reports will not include a stack trace and crash reports are
/// not send until the next application startup.
nilsreichardt marked this conversation as resolved.
Show resolved Hide resolved
void crash() {
return _delegate.crash();
}
Expand Down
Expand Up @@ -89,7 +89,8 @@ abstract class FirebaseCrashlyticsPlatform extends PlatformInterface {
/// This should only be used for testing purposes in cases where you wish to
/// simulate a native crash to view the results on the Firebase Console.
///
/// Note: crash reports will not include a stack trace.
/// Note: crash reports will not include a stack trace and crash reports are
/// not send until the next application startup.
nilsreichardt marked this conversation as resolved.
Show resolved Hide resolved
void crash() {
throw UnimplementedError('crash() is not implemented');
}
Expand Down