Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(proguard): Add type field for debug images doc #12436

Merged
merged 1 commit into from
Jan 28, 2025
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
7 changes: 7 additions & 0 deletions develop-docs/sdk/data-model/event-payloads/debugmeta.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,12 @@ Proguard images refer to `mapping.txt` files generated when Proguard obfuscates
function names. The Java SDK integrations assign this file a unique identifier,
which has to be included in the list of images.

Attributes:

`type`

: **Required**. Type of the debug image. Must be `"proguard"`.

`uuid`

: **Required**. The unique identifier assigned by the Java SDK.
Expand All @@ -367,6 +373,7 @@ Example:

```json
{
"type": "proguard",
"uuid": "395835f4-03e0-4436-80d3-136f0749a893"
}
```
Expand Down
Loading