> For the complete documentation index, see [llms.txt](https://docs.adjump.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.adjump.io/react-native/proguard-rules.md).

# ProGuard Rules

### Adjump ProGuard Rules

To ensure that Adjump functionalities work smoothly with ProGuard enabled, add the following ProGuard rule:

{% code title="proguard-rules.pro" %}

```
-keep class io.adjump** { *; }
```

{% endcode %}

This rule preserves all classes within the `io.adjump.model` package and its subpackages from being obfuscated by ProGuard.

Make sure to include this rule in your ProGuard configuration file to prevent any issues with Adjump integration.
