GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

IMA module - Android

Use this module for VAST video ads as an overlay on the Experiences player. IMA (Interactive Media Ads) integrates with the Experiences SDK for Android.

Set up the IMA module

1. Declare the dependency

In your app module build.gradle:

// Experiences SDK
def blazeSDK = '<VERSION>'

dependencies {  
    implementation group: "com.blaze", name: "ima", version: "${blazeSDK}"  
}

2. Enable ads

Call from your Activity or Application class.

BlazeIMA.enableAds(delegate = BlazeIMADelegate?)

To disable:

BlazeIMA.disableAds()

Did this page help you?