Skip to content

Commit a3bb8fe

Browse files
committed
Standardize MediaRoutingDemo dependencies
Replace pre-built dependencies with source dependencies where applicable, and with project-defined prebuilts where not applicable. The concrete issue that this CL fixes is testing U features in the internal branch. Where BuildCompat.isAtLeastU() would run an outdated implementation that was failing on the tip-of-branch, which is no longer pre-release. Bug: 280034226 Test: Gradle sync and build, and manual testing of the app. Change-Id: I8b6dd268b697f0d0bf40e85a161c756b5adabee7
1 parent 4398fbb commit a3bb8fe

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

samples/MediaRoutingDemo/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ plugins {
44
}
55

66
dependencies {
7-
implementation("androidx.appcompat:appcompat:1.6.0")
7+
implementation(project(":appcompat:appcompat"))
88
implementation(project(":mediarouter:mediarouter"))
9-
implementation("androidx.recyclerview:recyclerview:1.2.1")
10-
implementation("androidx.concurrent:concurrent-futures:1.1.0")
11-
implementation(libs.material)
9+
implementation(project(":recyclerview:recyclerview"))
10+
implementation(project(":concurrent:concurrent-futures"))
1211

13-
implementation ("androidx.multidex:multidex:2.0.1")
14-
implementation("com.google.guava:guava:31.1-android")
12+
implementation(libs.material)
13+
implementation(libs.multidex)
14+
implementation(libs.guava)
1515
}
1616

1717
android {

0 commit comments

Comments
 (0)