# SDK Setup

### To implement the Adjump SDK in your project using Gradle, follow these steps:

1. Open your project's `build.gradle` file.
2. Inside the `dependencies` block, add the following line:

{% tabs %}
{% tab title="Java" %}

```gradle
implementation("io.leadmint.adjump:offerwall:1.0.4")
```

{% endtab %}

{% tab title="Kotlin" %}

```gradle
implementation("io.leadmint.adjump:offerwall:1.0.4")
```

{% endtab %}
{% endtabs %}

3. Sync your project with Gradle by clicking on the "Sync Now" button in Android Studio or running the `./gradlew` command in your project directory.
4. Once the project is synced, you can start using the Adjump SDK in your project.

Here's how your `build.gradle` file should look after adding the dependency:

{% tabs %}
{% tab title="Java" %}

```gradle
dependencies {
    // Other dependencies...
   implementation("io.leadmint.adjump:offerwall:1.0.4")
}
```

{% endtab %}

{% tab title="Kotlin" %}

```gradle
dependencies {
    // Other dependencies...
    implementation("io.leadmint.adjump:offerwall:1.0.4")
}
```

{% endtab %}
{% endtabs %}

After adding the dependency, Gradle will automatically download the Adjump SDK and include it in your project. You can then start using the SDK's features in your app.
