Sample code

Import the Google IMA integration module

import THEOplayerGoogleIMAIntegration

Create and add a Google IMA integration to your THEOplayer

As of v8.14.0, the integration will be automatically created and added to THEOplayer when you add the THEOplayerGoogleIMAIntegration package to your project. It is still possible to create and add an integration to override the auto-integration:

let imaIntegration = GoogleIMAIntegrationFactory.createIntegration(on: theoplayer)
theoplayer.addIntegration(imaIntegration)

Add a source with a Google IMA ad description

let adDescription = GoogleImaAdDescription(src: "ima_ad_source")
let typedSource = TypedSource(src: "https://cdn.theoplayer.com/video/big_buck_bunny/big_buck_bunny.m3u8", type: "application/x-mpegurl")
let sourceDescription = SourceDescription(source: typedSource, ads: [adDescription])
theoplayer.source = sourceDescription

Or, add a Google DAI source

let daiConfig = GoogleDAILiveConfiguration(
    assetKey: "c-rArva4ShKVIAkNfy6HUQ",
    apiKey: "",
    authToken: nil,
    streamActivityMonitorID: nil,
    adTagParameters: nil
)
let typedSource = GoogleDAITypedSource(ssai: daiConfig)
theoplayer.source = sourceDescription
return SourceDescription(source: typedSource)