diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index adf160de..c84899ad 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -36,6 +36,7 @@ ktor-serialization-kotlinx-json = { module = "io.ktor:ktor-serialization-kotlinx kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" } androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" } +androidx-room-common = { module = "androidx.room:room-common", version.ref = "room" } androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" } androidx-sqlite-bundled = { module = "androidx.sqlite:sqlite-bundled", version.ref = "sqlite" } diff --git a/tasks-core/build.gradle.kts b/tasks-core/build.gradle.kts index ab78fed9..fa1d2f5f 100644 --- a/tasks-core/build.gradle.kts +++ b/tasks-core/build.gradle.kts @@ -24,7 +24,6 @@ plugins { alias(libs.plugins.jetbrains.kotlin.multiplatform) alias(libs.plugins.jetbrains.kotlin.serialization) - alias(libs.plugins.androidx.room) } kotlin { @@ -42,7 +41,7 @@ kotlin { implementation(projects.google.oauth) implementation(projects.google.tasks) - implementation(libs.androidx.room.runtime) + implementation(libs.androidx.room.common) } } }