diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 918bb3b..4fc5aad 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -10,6 +10,7 @@ androidx-core = "1.17.0" androidx-espresso = "3.7.0" androidx-lifecycle = "2.10.0-alpha07" androidx-nav3 = "1.0.0-alpha06" +androidx-paging = "3.4.0" androidx-testExt = "1.3.0" coil = "3.3.0" composeHotReload = "1.0.0" @@ -42,6 +43,7 @@ androidx-testExt-junit = { module = "androidx.test.ext:junit", version.ref = "an androidx-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "androidx-espresso" } androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" } androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity" } +androidx-paging-compose = { module = "androidx.paging:paging-compose", version.ref = "androidx-paging" } compose-uiTooling = { module = "org.jetbrains.compose.ui:ui-tooling", version.ref = "composeMultiplatform" } androidx-lifecycle-viewmodelCompose = { module = "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "androidx-lifecycle" } androidx-lifecycle-runtimeCompose = { module = "org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose", version.ref = "androidx-lifecycle" } diff --git a/ui/build.gradle.kts b/ui/build.gradle.kts index 040d6af..8dfba38 100644 --- a/ui/build.gradle.kts +++ b/ui/build.gradle.kts @@ -44,6 +44,9 @@ kotlin { implementation(libs.compose.ui) implementation(libs.compose.components.resources) implementation(libs.compose.uiToolingPreview) + + implementation(libs.androidx.paging.compose) + implementation(libs.androidx.lifecycle.viewmodelCompose) implementation(libs.androidx.lifecycle.runtimeCompose)