📲SDK Setup
To implement the Adjump SDK in your project using Gradle, follow these steps:
Open your project's
build.gradlefile.Inside the
dependenciesblock, add the following line:
implementation("io.leadmint.adjump:offerwall:1.0.4")implementation("io.leadmint.adjump:offerwall:1.0.4")Sync your project with Gradle by clicking on the "Sync Now" button in Android Studio or running the
./gradlewcommand in your project directory.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.4")
}dependencies {
// Other dependencies...
implementation("io.leadmint.adjump:offerwall:1.0.4")
}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