Remove ARCH_* constants from Dependencies.kt
And related constants that point to
Architecture Component artifacts.
Library owners should pin their dependencies
at the appropriate versions and manage dependency
upgrades at the library level.
Test: ./gradlew bOS
Change-Id: Iaa4a07de57b94ff8eab7f29ef532263eeb126081
diff --git a/paging/rxjava2/build.gradle b/paging/rxjava2/build.gradle
index 7fd4388..dfa61af 100644
--- a/paging/rxjava2/build.gradle
+++ b/paging/rxjava2/build.gradle
@@ -40,7 +40,7 @@
androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
androidTestImplementation(ANDROIDX_TEST_CORE)
androidTestImplementation(ANDROIDX_TEST_RUNNER)
- androidTestImplementation(ARCH_CORE_TESTING)
+ androidTestImplementation("androidx.arch.core:core-testing:2.0.1")
}
androidx {