Skip to content

SDK integration

  • Android Gradle Plugin: 8.9.1 or higher (Gradle 8.11.1 or higher)
  • Compile SDK: 36 or higher
  • Kotlin: 2.2 or higher
  • Minimum SDK: 24 or higher

Depending on the language used by the project for the Gradle scripts, you must follow the steps from the corresponding tab:

First, you need to add the following Maven repositories inside the repositories block of the settings.gradle file:

repositories {
maven { url 'https://maven.wortise.com/artifactory/public' }
maven { url 'https://artifact.bytedance.com/repository/pangle' }
maven { url 'https://artifactory.bidmachine.io/bidmachine' }
}

Once added, you can proceed to integrate the SDK. To do so, you have to add the following line inside the dependencies block of the build.gradle file located at the app-level:

implementation 'com.wortise:android-sdk:1.8.0'

If not already have it, you need to activate the Java 8 compatibility in the project. This can be achieved by adding these extra lines inside the android block, also in the same build.gradle file:

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

You need to add the following <meta-data> element in the AndroidManifest.xml file, inside the <application> block, with Google’s application ID as value:

<manifest>
...
<application>
...
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/>
</application>
</manifest>

You can consult the following section to implement this request and obtain the user consent: User consent

Our recommendation is to initialize the SDK in the Application class of the app, but it can also be done in any main Activity.

To do so, it is necessary to integrate the following code in the onCreate method:

WortiseSdk.initialize(this, "your app key")

There are two possible ways to know when the SDK finishes its initialization:

Passing a listener as the last parameter of the method WortiseSdk.initialize

Section titled “Passing a listener as the last parameter of the method WortiseSdk.initialize”
WortiseSdk.initialize(this, "your app key") {
// This listener will be invoked when the initialization finishes
}
WortiseSdk.wait {
// This listener will be invoked when the initialization finishes
}

To verify the integration, the SDK provides a test mode that allows the app to always receive ads.

In addition to the option that is available in our dashboard, you can programmatically enable this test mode, from the SDK itself, by using the following code:

AdSettings.testEnabled = true