📲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:

implementation 'io.leadmint.adjump:offerwall:1.0.0'
  1. Sync your project with Gradle by clicking on the "Sync Now" button in Android Studio or running the ./gradlew command in your project directory.

  2. 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:

dependencies {
    // Other dependencies...
   implementation 'io.leadmint.adjump:offerwall:1.0.0'
}

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.

Last updated