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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.adjump.io/android/sdk-setup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
