Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/docs/product/cli/dif.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -273,15 +273,22 @@ sentry-cli upload-proguard \
```

Since the Android SDK needs to know the UUID of the mapping file, you need
to associate it with the upload. If you supply
`--uuid`, it sets that value:
to associate it with the upload. If you supply `--uuid`, it sets that value:

```bash
sentry-cli upload-proguard \
--uuid A_VALID_UUID \
app/build/outputs/mapping/{BuildVariant}/mapping.txt
```

Which then also needs to be included in your `AndroidManifest.xml` file:

```xml
<application>
<meta-data android:name="io.sentry.proguard-uuid" android:value="A_VALID_UUID" />
</application>
```

After the upload, Sentry deobfuscates future events. If you want to send an obfuscated crash to Sentry to verify the correct operation, ensure that the ProGuard mapping files are listed in _Project Settings > ProGuard_.

### Upload Options
Expand Down