Include RTSP module in gradle project

#minor-release

PiperOrigin-RevId: 372981022
This commit is contained in:
olly 2021-05-10 20:00:12 +01:00 committed by Oliver Woodman
parent 9a2ebbb72e
commit d282ad25c1
2 changed files with 2 additions and 0 deletions

View file

@ -70,6 +70,7 @@ modules individually.
* `exoplayer-core`: Core functionality (required).
* `exoplayer-dash`: Support for DASH content.
* `exoplayer-hls`: Support for HLS content.
* `exoplayer-rtsp`: Support for RTSP content.
* `exoplayer-smoothstreaming`: Support for SmoothStreaming content.
* `exoplayer-transformer`: Media transformation functionality.
* `exoplayer-ui`: UI components and resources for use with ExoPlayer.

View file

@ -17,6 +17,7 @@ dependencies {
api project(modulePrefix + 'library-core')
api project(modulePrefix + 'library-dash')
api project(modulePrefix + 'library-hls')
api project(modulePrefix + 'library-rtsp')
api project(modulePrefix + 'library-smoothstreaming')
api project(modulePrefix + 'library-transformer')
api project(modulePrefix + 'library-ui')