Skip to content

Commit a10498b

Browse files
authored
Add info that associating proguard files with release is optional (#13090)
* add optional text for proguard release association * add alert * wording * wording * update wording
1 parent f6b20ed commit a10498b

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

docs/cli/dif.mdx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ sentry-cli debug-files upload --include-sources /path/to/files...
9191
This feature is supported by build tools that produce debug information files
9292
supported by Sentry such as DWARF and PDB. This applies to languages such
9393
as C/C++/C#/Swift/Rust/Zig/etc.
94-
For Java/Kotlin and other JVM languages, use one of the plugins: [Maven](https://docs.sentry.io/platforms/java/maven/) or [Gradle](https://docs.sentry.io/platforms/java/gradle/).
94+
For Java/Kotlin and other JVM languages, use one of the plugins: [Maven](https://docs.sentry.io/platforms/java/maven/) or [Gradle](https://docs.sentry.io/platforms/java/gradle/).
9595

9696
</Alert>
9797

@@ -226,10 +226,16 @@ sentry-cli upload-proguard \
226226
app/build/outputs/mapping/{BuildVariant}/mapping.txt
227227
```
228228

229-
Additionally, you can associate the proguard mapping file to a specific release:
229+
Additionally, you can associate the ProGuard mapping file to a specific release:
230230

231-
```bash
232-
# Additionally create an association to the release [email protected]+1
231+
<Alert>
232+
233+
This step is not required for deobfuscation to work but can help you identify which release a mapping file belongs to when multiple files exist for the same app.
234+
235+
</Alert>
236+
237+
```bash {5-7}
238+
# Associate the mapping file to the release [email protected]+1
233239
sentry-cli upload-proguard \
234240
--uuid A_VALID_UUID \
235241
app/build/outputs/mapping/{BuildVariant}/mapping.txt \

0 commit comments

Comments
 (0)