Flutter error tracking installation
- 1
Install the package
RequiredAdd the PostHog Flutter SDK to your
pubspec.yaml:pubspec.yaml - 2
Platform setup
RequiredAdd these values to your
AndroidManifest.xml:android/app/src/main/AndroidManifest.xmlUpdate the minimum Android SDK version to 21 in
android/app/build.gradle:android/app/build.gradleAdd these values to your
Info.plist:ios/Runner/Info.plistUpdate the minimum platform version to iOS 13.0 in your
Podfile:PodfileAdd these values in
index.html:web/index.html - 3
Send events
RecommendedOnce installed, PostHog will automatically start capturing events. You can also manually send events to test your integration:
Dart - 4
Set up exception autocapture
RecommendedClient-side configuration onlyThis configuration is client-side only. Support for remote configuration in the error tracking settings will be added in a future release.
You can autocapture exceptions by configuring the
errorTrackingConfigwhen setting up PostHog:DartConfiguration options:
Option Description captureFlutterErrorsCaptures Flutter framework errors ( FlutterError.onError)capturePlatformDispatcherErrorsCaptures Dart runtime errors ( PlatformDispatcher.onError). Web not supported.captureIsolateErrorsCaptures errors from main isolate. Web not supported. captureNativeExceptionsCaptures native exceptions (Java/Kotlin exceptions). Android only. captureSilentFlutterErrorsCaptures Flutter errors that are marked as silent. Default: false. - 5
Manually capture exceptions
OptionalBasic usage
You can manually capture exceptions using the
captureExceptionmethod:DartThis is helpful if you've built your own error handling logic or want to capture exceptions that are handled by your application code.
Error tracking configuration
You can configure error tracking behavior when setting up PostHog:
Flutter web apps use minified stack trace framesFlutter web apps generate minified stack trace frames by default, which may cause the configurations below to behave differently or not work as expected.
DartConfiguration options:
Option Description inAppIncludesList of package names to be considered inApp frames (takes precedence over excludes) inAppExcludesList of package names to be excluded from inApp frames inAppByDefaultWhether frames are considered inApp by default when their origin cannot be determined inAppframes are stack trace frames that belong to your application code (as opposed to third-party libraries or system code). These are highlighted in the PostHog error tracking interface to help you focus on the relevant parts of the stack trace. - 6
Future features
OptionalWe currently don't support the following features:
- No de-obfuscating stacktraces from obfuscated builds (--obfuscate and --split-debug-info) for Dart code
- No de-obfuscating stacktraces when isMinifyEnabled is enabled for Java/Kotlin code
- No Source code context associated with an exception
- No native iOS exception capture
- No native C/C++ exception capture on Android (Java/Kotlin only)
- No background isolate error capture
These features will be added in future releases. We recommend you stay up to date with the latest version of the PostHog Flutter SDK.
- 7

