addMediaItem

abstract fun addMediaItem(mediaItem: MediaItem)

Adds a media item to the end of the playlist.

abstract fun addMediaItem(index: Int, mediaItem: MediaItem)

Adds a media item at the given index of the playlist.

Parameters

index

The index at which to add the media item. If the index is larger than the size of the playlist, the media item is added to the end of the playlist.

mediaItem

The media item to add.