3.2.0-beta.1
Pre-release
Pre-release
Features
- Upload Dart symbol mapping file (#347)
- Enables symbolication of Flutter issue titles for obfuscated builds.
- Supported: Android and iOS
- Not supported (yet): macOS, Linux and Windows.
- Generate the mapping file: Add
--extra-gen-snapshot-options=--save-obfuscation-map=<path>when building. Example:flutter build apk --obfuscate --split-debug-info=build/symbols --extra-gen-snapshot-options=--save-obfuscation-map=build/mapping.json - Add new field to Sentry Dart Plugin config:
dart_symbol_map_path: /path/to/build/mapping.json - Note: the path must point directly to the mapping file (absolute or relative path), not a directory.
# within your pubspec.yaml
sentry
# ... other Sentry config
dart_symbol_map_path: /path/to/build/mapping.json