Hello
I am facing one issue with react native app where I have used a native Exoplayer. After implementing, I can observe two events AD_PERIOD_STARTED_EVENT, AD_PERIOD_ENDED_EVENT but no ad overlay for SSAI.
dependencies :
def EXO_PLAYER_VERSION = '2.18.2'
implementation 'com.google.android.gms:play-services-ads-identifier:18.0.1'
implementation 'com.google.ads.interactivemedia.v3:interactivemedia:3.29.0'
implementation ("com.google.android.exoplayer:extension-ima:${EXO_PLAYER_VERSION}"){
exclude group: 'com.google.android.exoplayer', module:'exoplayer-common'
}
implementation "com.google.android.exoplayer:exoplayer-core:${EXO_PLAYER_VERSION}"
implementation "com.google.android.exoplayer:exoplayer-dash:${EXO_PLAYER_VERSION}"
implementation "com.google.android.exoplayer:exoplayer-ui:${EXO_PLAYER_VERSION}"
implementation "com.google.android.exoplayer:exoplayer-hls:${EXO_PLAYER_VERSION}"
implementation "com.google.android.exoplayer:exoplayer-smoothstreaming:${EXO_PLAYER_VERSION}"
implementation "com.google.android.exoplayer:extension-mediasession:${EXO_PLAYER_VERSION}"
Thanks
Shagun