Bump stable deps of Paging to latest
Specificaly, dependencies on out-of-date -ktx artifacts cause duplicate
class warnings for java users who use the non-ktx lifecycle artifact ahead of
paging.
Fixes: 208339588
Test: ./gradlew bOS
Change-Id: I635392aeca54c49984697d8d1c53d5b657a6663b
diff --git a/paging/paging-runtime/build.gradle b/paging/paging-runtime/build.gradle
index b5d939f..e0906d9 100644
--- a/paging/paging-runtime/build.gradle
+++ b/paging/paging-runtime/build.gradle
@@ -35,13 +35,13 @@
// Ensure that the -ktx dependency graph mirrors the Java dependency graph
api(project(":paging:paging-common-ktx"))
- api("androidx.lifecycle:lifecycle-livedata-ktx:2.2.0")
- api("androidx.lifecycle:lifecycle-runtime-ktx:2.2.0")
- api("androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0")
- api("androidx.recyclerview:recyclerview:1.2.0")
+ api("androidx.lifecycle:lifecycle-livedata-ktx:2.4.0")
+ api("androidx.lifecycle:lifecycle-runtime-ktx:2.4.0")
+ api("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0")
+ api("androidx.recyclerview:recyclerview:1.2.1")
api(libs.kotlinStdlib)
api(libs.kotlinCoroutinesAndroid)
- implementation("androidx.core:core-ktx:1.2.0")
+ implementation("androidx.core:core-ktx:1.7.0")
androidTestImplementation(project(":internal-testutils-common"))
androidTestImplementation(project(":internal-testutils-ktx"))