⌨️SDK integration
Setup project
Depending of the language used by the project for the Gradle scripts, you must follow the steps from the corresponding tab:
In first place, it is needed to add the following Maven repositories inside the repositories
block of the settings.gradle
file:
In the projects which still use an old structure, the repositories
block can be found on the build.gradle
file located at the app-level.
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:
In case of not already have it, it is needed 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:
Setup Manifest
To improve the eCPM of Google's Open Bidding partners, it is needed to add a <meta-data>
element in the AndroidManifest.xml
file, inside the <application>
block.
This value can be found in our dashboard, inside the app details, under the name Google App ID
.
Request consent
It is very recommended to request the user consent to be able to show personalised ads. This will allow to display content of more interest and generate higher revenues.
You can consult the following section to implement this request and obtain the user consent: User consent
Initialize SDK
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:
Initialization listener
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
WortiseSdk.initialize
Using the method WortiseSdk.wait
WortiseSdk.wait
Test mode
To verify the integration, the SDK provides a test mode that allows the app to always receive ads.
Beside the option that is available in our dashboard, you can programatically enable this test mode, from the SDK itself, by using the following code:
Última actualización