We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a030ad9 commit 89661d2Copy full SHA for 89661d2
src/docs/product/cli/dif.mdx
@@ -288,6 +288,18 @@ sentry-cli upload-proguard \
288
app/build/outputs/mapping/{BuildVariant}/mapping.txt
289
```
290
291
+Additionally, you can associate the proguard mapping file to a specific release:
292
+
293
+```bash
294
+# Additionally create an association to the release my.app.id@1.0.0+1
295
+sentry-cli upload-proguard \
296
+ --uuid A_VALID_UUID \
297
+ app/build/outputs/mapping/{BuildVariant}/mapping.txt \
298
+ --app-id my.app.id \
299
+ --version 1.0.0 \
300
+ --version-code 1
301
+```
302
303
After the upload, Sentry deobfuscates future events.
304
To make sure that it worked, you can check _Project Settings > ProGuard_ and see if the upload mapping files are listed.
305
0 commit comments