Adjump
VersionHome Page
  • Adjump SDK Documentation
  • ANDROID
    • 📲SDK Setup
    • ⚡SDK Initialization
    • 🛠️ProGuard Rules
  • REACT NATIVE
    • 📲SDK Setup
    • ⚡SDK Initialization
    • 🛠️ProGuard Rules
  • Flutter
    • 📲SDK Setup
    • ⚡SDK Initialization
    • 🛠️ProGuard Rules
  • Payout
    • 🔌S2S Postback Setup
Powered by GitBook
On this page
  1. ANDROID

ProGuard Rules

Adjump ProGuard Rules

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

proguard-rules.pro
-keep class io.adjump** { *; }

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.

PreviousSDK InitializationNextSDK Setup

Last updated 2 months ago

🛠️