From d282ad25c1443c8388b8a2d50358c1d23d7f54be Mon Sep 17 00:00:00 2001 From: olly Date: Mon, 10 May 2021 20:00:12 +0100 Subject: [PATCH] Include RTSP module in gradle project #minor-release PiperOrigin-RevId: 372981022 --- docs/hello-world.md | 1 + library/all/build.gradle | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/hello-world.md b/docs/hello-world.md index 41e9b1ec0c..01db16036c 100644 --- a/docs/hello-world.md +++ b/docs/hello-world.md @@ -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. diff --git a/library/all/build.gradle b/library/all/build.gradle index e18d856c83..56414c14bf 100644 --- a/library/all/build.gradle +++ b/library/all/build.gradle @@ -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')