Ad Review
Empower uses AppLovin's Ad Review service to track the ads that AppLovin MAX loads in your app. With the AppLovin Quality Service plugin in your build, every loaded MAX ad carries an Ad Review creative id, and the SDK reports that id to Empower so our team can review the creatives your users see. Add the plugin with the Empower Ad Review key as described below.
Adding the Quality Service Plugin
Step 1: Add the AppLovin plugin repository to pluginManagement.repositories in your settings file. The Empower settings plugin manages dependency repositories only, so this entry is needed even when you use it.
- Kotlin DSL
- Groovy
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url = uri("https://maven.empower.net/release") }
maven { url = uri("https://artifacts.applovin.com/android") }
}
}
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url 'https://maven.empower.net/release' }
maven { url 'https://artifacts.applovin.com/android' }
}
}
Step 2: Apply the plugin in your app module and set the Empower Ad Review key.
- Kotlin DSL
- Groovy
plugins {
// your existing plugins
id("com.applovin.quality") version "5.12.11"
}
applovin {
apiKey = "5xO_daiW6SW60ZJpfipnEgJ0ufq08df14rr_bAdTqGVtxlC6zrb0t5R2038DrTT_KP61WWKMTQFAp7_9TPUfZU"
}
plugins {
// your existing plugins
id 'com.applovin.quality' version '5.12.11'
}
applovin {
apiKey "5xO_daiW6SW60ZJpfipnEgJ0ufq08df14rr_bAdTqGVtxlC6zrb0t5R2038DrTT_KP61WWKMTQFAp7_9TPUfZU"
}
Use the key exactly as shown. It belongs to the Empower AppLovin account that serves your ads. With a different key the loaded ads carry no Ad Review id and cannot be tracked.
If your project declares plugins in a buildscript block instead of the plugins block, follow the Ad Review steps in AppLovin's integration guide. The key stays the same.