
In a later change, the AdPlaybackState will include the playing adsId (set by the AdsLoader) and the ads loader will use this to determine what ad information is associated with the playing/next periods, to allow loading ads in playlists. Apps can continue to pass just a URI for an ad tag with their MediaItem, in which case the associated playlist will request that ad tag just and the same state will be used for all occurrences of the ad tag. This change has breaking changes to the AdsLoader interface and removes deprecated ways of passing the ad tag, as it's very likely to go into a major release anyway and not needing to handle the deprecated cases simplifies ImaAdsLoader. Issue: #3750 PiperOrigin-RevId: 340438580
63 lines
2.7 KiB
Markdown
63 lines
2.7 KiB
Markdown
# ExoPlayer IMA extension #
|
|
|
|
The IMA extension is an [AdsLoader][] implementation wrapping the
|
|
[Interactive Media Ads SDK for Android][IMA]. You can use it to insert ads
|
|
alongside content.
|
|
|
|
[IMA]: https://developers.google.com/interactive-media-ads/docs/sdks/android/
|
|
[AdsLoader]: https://exoplayer.dev/doc/reference/index.html?com/google/android/exoplayer2/source/ads/AdsLoader.html
|
|
|
|
## Getting the extension ##
|
|
|
|
The easiest way to use the extension is to add it as a gradle dependency:
|
|
|
|
```gradle
|
|
implementation 'com.google.android.exoplayer:extension-ima:2.X.X'
|
|
```
|
|
|
|
where `2.X.X` is the version, which must match the version of the ExoPlayer
|
|
library being used.
|
|
|
|
Alternatively, you can clone the ExoPlayer repository and depend on the module
|
|
locally. Instructions for doing this can be found in ExoPlayer's
|
|
[top level README][].
|
|
|
|
[top level README]: https://github.com/google/ExoPlayer/blob/release-v2/README.md
|
|
|
|
## Using the extension ##
|
|
|
|
To use the extension, follow the instructions on the
|
|
[Ad insertion page](https://exoplayer.dev/ad-insertion.html#declarative-ad-support)
|
|
of the developer guide. The `AdsLoaderProvider` passed to the player's
|
|
`DefaultMediaSourceFactory` should return an `ImaAdsLoader`. Note that the IMA
|
|
extension only supports players which are accessed on the application's main
|
|
thread.
|
|
|
|
Resuming the player after entering the background requires some special
|
|
handling when playing ads. The player and its media source are released on
|
|
entering the background, and are recreated when returning to the foreground.
|
|
When playing ads it is necessary to persist ad playback state while in the
|
|
background by keeping a reference to the `ImaAdsLoader`. When re-entering the
|
|
foreground, pass the same instance back when
|
|
`AdsLoaderProvider.getAdsLoader(MediaItem.AdsConfiguration adsConfiguration)`
|
|
is called to restore the state. It is also important to persist the player
|
|
position when entering the background by storing the value of
|
|
`player.getContentPosition()`. On returning to the foreground, seek to that
|
|
position before preparing the new player instance. Finally, it is important to
|
|
call `ImaAdsLoader.release()` when playback has finished and will not be
|
|
resumed.
|
|
|
|
You can try the IMA extension in the ExoPlayer demo app, which has test content
|
|
in the "IMA sample ad tags" section of the sample chooser. The demo app's
|
|
`PlayerActivity` also shows how to persist the `ImaAdsLoader` instance and the
|
|
player position when backgrounded during ad playback.
|
|
|
|
## Links ##
|
|
|
|
* [ExoPlayer documentation on ad insertion][]
|
|
* [Javadoc][]: Classes matching `com.google.android.exoplayer2.ext.ima.*`
|
|
belong to this module.
|
|
|
|
[ExoPlayer documentation on ad insertion]: https://exoplayer.dev/ad-insertion.html
|
|
[Javadoc]: https://exoplayer.dev/doc/reference/index.html
|