Antonin Porta
11/28/2022, 9:28 AMval androidMain by getting {
dependencies {
implementation("androidx.room:room-runtime:$roomVersion")
implementation("androidx.room:room-ktx:$roomVersion")
implementation("androidx.room:room-common:$roomVersion")
// kapt("androidx.room:room-compiler:$roomVersion")
...
And also under the plugins block
plugins {
id("kotlin-kapt")
}
But I'm getting the error : "cannot find implementation for XDatabase" when the app is running. I have no issues compiling.
I don't really understand what is missing or misconfigured. Any help would be great thanks 🙂
PS : I'm migrating an android library to kmm and haven't moved every dependency to kmm ones like SQLDelight...Josh Eldridge
11/29/2022, 3:58 AM