--extra-gen-snapshot-options=--save-obfuscation-map=build/app/obfuscation.map.json
-```
-
-```bash {tabTitle: Flutter Web}
-flutter build web --release --source-maps
-```
-
-For Flutter web run `flutter build web --release --source-maps` to generate source maps.
-
-
-## Running the Plugin
-
-After building your application, run the plugin to upload debug symbols:
-
-```bash
-flutter pub run sentry_dart_plugin
-```
-
-
-
-If you don't obfuscate your build, the plugin won't upload debug symbols. Additionally, source context (viewing source code in stack trace frames on Sentry) is not currently supported for non-obfuscated builds. GitHub Issue: [sentry-dart/#1314](https://github.com/getsentry/sentry-dart/issues/1314)
-
-
-
-## Android ProGuard Integration
-
-If you have ProGuard (`minifyEnabled`) enabled and you want to see proper native Android stacktraces, you must upload Android Proguard/R8 mapping files. You have two options:
-
-1. **Use the Sentry Android Gradle Plugin (Recommended)**
-
- After installing the [Sentry Android Gradle Plugin](/platforms/android/configuration/gradle/), set `autoInstallation` to `false` in your `app/build.gradle` file:
-
- ```groovy {filename: app/build.gradle}
- sentry {
- autoInstallation {
- enabled = false
- }
- }
- ```
-
- This is necessary because Sentry Flutter already ships with a compatible Sentry Android SDK, so we need to avoid conflicts.
-
- Follow the [Android Gradle Plugin guide](/platforms/android/configuration/gradle/#proguardr8--dexguard) to complete the ProGuard mapping setup.
-
-2. **Use the Sentry CLI**
-
- Alternatively, you can use the [Sentry CLI](/cli/dif/#uploading-files) to manually upload mapping files.
-
-
-
-Sentry's Flutter SDK doesn't currently support the `uploadNativeSymbols` flag from the Sentry Gradle Plugin.
-
-
-
-## Configuration Reference
-
-The following table lists all available configuration options for the Sentry Dart Plugin:
-
-
-
-| Option | Type | Default | Description | Environment Variable |
-|--------|------|---------|-------------|---------------------|
-| `project` | string | | **Required.** Your project's name (e.g., `sentry-flutter`) | `SENTRY_PROJECT` |
-| `org` | string | | **Required.** Your organization's slug (e.g., `sentry-sdks`) | `SENTRY_ORG` |
-| `auth_token` | string | | **Required.** The Sentry auth token | `SENTRY_AUTH_TOKEN` |
-| `upload_debug_symbols` | boolean | `true` | Enables or disables automatic upload of debug symbols | |
-| `upload_source_maps` | boolean | `false` | Enables or disables automatic upload of source maps | |
-| `upload_sources` | boolean | `false` | Enables or disables source code upload | |
-| `dart_symbol_map_path` | string | | Absolute or relative path to the Dart symbol map file used to make obfuscated Flutter issue titles readable on iOS and Android | |
-| `url` | string | | The URL of your Sentry instance | `SENTRY_URL` |
-| `url_prefix` | URL prefix for JS source maps | e.g. ~/app/ (string) | no | - |
-| `wait_for_processing` | boolean | `false` | Whether to wait for server-side processing of uploaded files | |
-| `log_level` | string | `warn` | Configures the log level for sentry-cli (`trace`, `debug`, `info`, `warn`, `error`) | `SENTRY_LOG_LEVEL` |
-| `release` | string | `name@version` from pubspec | The release version for source maps | `SENTRY_RELEASE` |
-| `dist` | string | | Custom distribution identifier | `SENTRY_DIST` |
-| `web_build_path` | string | `build/web` | The web build folder path | |
-| `commits` | string | `auto` | Release commits integration | |
-| `ignore_missing` | boolean | `false` | Ignore missing commits previously used in the release | |
-| `bin_dir` | string | `.dart_tool/pub/bin/sentry_dart_plugin` | The folder where the plugin downloads the sentry-cli binary | |
-| `bin_path` | string | | Path to a sentry-cli binary to use instead of downloading | |
-| `sentry_cli_cdn_url` | string | `https://downloads.sentry-cdn.com/sentry-cli` | Alternative place to download sentry-cli | `SENTRYCLI_CDNURL` |
-
-
-
-## Troubleshooting
-
-If you encounter any issues with the Sentry Dart Plugin, refer to [Troubleshooting - Sentry Dart Plugin](/platforms/dart/guides/flutter/troubleshooting#sentry-dart-plugin) for solutions to common problems.