Skip to content

Commit bfe5930

Browse files
committed
Fix gradle config for doc-samples module
Also remove some unused dependencies. Follow-up to 46d4066 PiperOrigin-RevId: 797302191 (cherry picked from commit 079e891)
1 parent d59e76d commit bfe5930

File tree

2 files changed

+5
-20
lines changed

2 files changed

+5
-20
lines changed

docsamples/build.gradle

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,8 @@ android {
2828
}
2929

3030
dependencies {
31-
implementation project(modulePrefix + 'lib-datasource-cronet')
3231
implementation project(modulePrefix + 'lib-exoplayer')
33-
implementation project(modulePrefix + 'lib-exoplayer-dash')
34-
implementation project(modulePrefix + 'lib-exoplayer-hls')
35-
implementation project(modulePrefix + 'lib-exoplayer-ima')
36-
implementation project(modulePrefix + 'lib-exoplayer-rtsp')
37-
implementation project(modulePrefix + 'lib-exoplayer-smoothstreaming')
38-
implementation project(modulePrefix + 'lib-transformer')
39-
implementation project(modulePrefix + 'lib-effect')
40-
implementation project(modulePrefix + 'lib-muxer')
41-
implementation project(modulePrefix + 'lib-container')
42-
implementation project(modulePrefix + 'lib-session')
43-
implementation project(modulePrefix + 'lib-ui')
44-
implementation project(modulePrefix + 'lib-ui-compose')
4532
implementation 'androidx.annotation:annotation:' + androidxAnnotationVersion
33+
implementation 'androidx.appcompat:appcompat:' + androidxAppCompatVersion
4634
implementation 'androidx.activity:activity-compose:1.9.0'
47-
implementation 'androidx.compose.material:material'
48-
implementation 'androidx.compose.material3:material3'
49-
implementation 'androidx.compose.material:material-icons-extended'
50-
implementation 'com.github.bumptech.glide:glide:' + glideVersion
51-
implementation 'com.github.bumptech.glide:concurrent-integration:' + glideVersion
52-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android' + kotlinxCoroutinesVersion
53-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-guava:' + kotlinxCoroutinesVersion
5435
}

settings.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,8 @@ project(modulePrefix + 'test-session-current').projectDir = new File(rootDir, 'l
6464
include modulePrefix + 'testapp-controller'
6565
project(modulePrefix + 'testapp-controller').projectDir = new File(rootDir, 'testapps/controller')
6666

67+
// Documentation samples.
68+
include modulePrefix + 'doc-samples'
69+
project(modulePrefix + 'doc-samples').projectDir = new File(rootDir, 'docsamples')
70+
6771
apply from: 'core_settings.gradle'

0 commit comments

Comments
 (0)