You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| auth_token | Auth Token | e.g. 64 random characteres (string) | yes | SENTRY_AUTH_TOKEN |
107
-
| url | URL | e.g. https<area>://mysentry.invalid/ (string) | no | SENTRY_URL |
108
-
| url_prefix | URL prefix for JS source maps | e.g. ~/app/ (string) | no | - |
109
-
| wait_for_processing | Wait for server-side processing of uploaded files | false (boolean) | no | - |
110
-
| log_level | Configures the log level for sentry-cli | warn (string) | no | SENTRY_LOG_LEVEL |
111
-
| release | The release version for source maps, it should match the release set by the SDK | name@version from pubspec (string) | no | SENTRY_RELEASE |
112
-
| dist | The dist/build number for source maps, it should match the dist set by the SDK | the number after the '+' char from 'version' pubspec (string) | no | SENTRY_DIST |
113
-
| build_path | The build folder of debug files for upload | `build` (string) | no | - |
114
-
| web_build_path | The web build folder of debug files for upload relative to build_path | `web` (string) | no | - |
115
-
| symbols_path | The directory containing debug symbols (i.e. the `--split-debug-info=` parameter value you pass to `flutter build`) | `.` (string) | no | - |
116
-
| commits | Release commits integration | auto (string) | no | - |
117
-
| ignore_missing | Ignore missing commits previously used in the release | false (boolean) | no | - |
118
-
| bin_dir | The folder where the plugin downloads the sentry-cli binary | .dart_tool/pub/bin/sentry_dart_plugin (string) | no | - |
119
-
| bin_path | Path to the sentry-cli binary to use instead of downloading. Make sure to use the correct version. | null (string) | no | - |
120
-
| sentry_cli_cdn_url | Alternative place to download sentry-cli | https://downloads.sentry-cdn.com/sentry-cli (string) | no | SENTRYCLI_CDNURL |
121
-
| sentry_cli_version | Override the sentry-cli version that should be downloaded. | (string) | no | - |
104
+
| Configuration Name | Description | Default Value And Type | Required | Alternative Environment variable |
| auth_token | Auth Token | e.g. 64 random characteres (string) | yes | SENTRY_AUTH_TOKEN |
113
+
| url | URL | e.g. https<area>://mysentry.invalid/ (string) | no | SENTRY_URL |
114
+
| url_prefix | URL prefix for JS source maps | e.g. ~/app/ (string) | no | - |
115
+
| wait_for_processing | Wait for server-side processing of uploaded files | false (boolean) | no | - |
116
+
| log_level | Configures the log level for sentry-cli | warn (string) | no | SENTRY_LOG_LEVEL |
117
+
| release | The release version for source maps, it should match the release set by the SDK | name@version from pubspec (string) | no | SENTRY_RELEASE |
118
+
| dist | The dist/build number for source maps, it should match the dist set by the SDK | the number after the '+' char from 'version' pubspec (string) | no | SENTRY_DIST |
119
+
| build_path | The build folder of debug files for upload | `build` (string) | no | - |
120
+
| web_build_path | The web build folder of debug files for upload relative to build_path | `web` (string) | no | - |
121
+
| symbols_path | The directory containing debug symbols (i.e. the `--split-debug-info=` parameter value you pass to `flutter build`) | `.` (string) | no | - |
122
+
| dart_symbol_map_path | Absolute or relative path to a Dart obfuscation map file to upload. This allows symbolication of Flutter issue titles for Android and iOS. The map file is generated by adding the following arguments to your Flutter build command: `--extra-gen-snapshot-options=--save-obfuscation-map=<path>`. | null (string) | no | - |
123
+
| commits | Release commits integration | auto (string) | no | - |
124
+
| ignore_missing | Ignore missing commits previously used in the release | false (boolean) | no | - |
125
+
| bin_dir | The folder where the plugin downloads the sentry-cli binary | .dart_tool/pub/bin/sentry_dart_plugin (string) | no | - |
126
+
| bin_path | Path to the sentry-cli binary to use instead of downloading. Make sure to use the correct version. | null (string) | no | - |
127
+
| sentry_cli_cdn_url | Alternative place to download sentry-cli | https://downloads.sentry-cdn.com/sentry-cli (string) | no | SENTRYCLI_CDNURL |
128
+
| sentry_cli_version | Override the sentry-cli version that should be downloaded. | (string) | no | - |
122
129
123
130
## Breaking Changes in v3.0.0
124
131
@@ -200,4 +207,6 @@ The `--split-debug-info` option requires setting a output directory, the directo
200
207
201
208
Flutter's `build web` command requires setting the `--source-maps` parameter to generate source maps, See [Issue](https://github.com/flutter/flutter/issues/72150#issuecomment-755541599)
202
209
210
+
If you opt into uploading a Dart obfuscation map (`dart_symbol_map_path`), ensure you build with both `--obfuscate` and `--extra-gen-snapshot-options=--save-obfuscation-map=<path>`. The map path you configure must point to the generated file.
211
+
203
212
If a previous release could not be found in the git history, please make sure you set `ignore_missing: true` in the configuration if you want to ignore such errors, See [Issue](https://github.com/getsentry/sentry-dart-plugin/issues/153)
0 commit comments