# 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.
