diff --git a/docs/platforms/dart/guides/flutter/troubleshooting.mdx b/docs/platforms/dart/guides/flutter/troubleshooting.mdx index 1a27fdb5c3c32..c5fe626c3861d 100644 --- a/docs/platforms/dart/guides/flutter/troubleshooting.mdx +++ b/docs/platforms/dart/guides/flutter/troubleshooting.mdx @@ -37,6 +37,10 @@ Building a Flutter app for a specific ABI using the `--target-platform` argument flutter build apk --target-platform=android-arm --split-per-abi ``` +## Running Sentry Within an Isolate + +If you have a Sentry instance running within a separate [Isolate](https://dart.dev/language/isolates) you must execute `Sentry.close()` before the Isolate completes, otherwise the Isolate won't shut down correctly. + ## Native Symbolication on Android The configuration for symbolication of Native events (C/C++) is documented in our [Android Native Development Kit](/platforms/android/configuration/using-ndk/) content. If you are having issues with symbolication in Flutter, check that your configuration is correct, as discussed in our Flutter content that covers [Uploading for Android NDK](/platforms/dart/guides/flutter/upload-debug/#uploading-for-android-ndk)