I'm trying Room KMP, but I get `iosArm64Main: Coul...
# multiplatform
r
I'm trying Room KMP, but I get
iosArm64Main: Could not find androidx:room:room-runtime.
Any idea ?
e
https://developer.android.com/kotlin/multiplatform/room
The current version of Room that supports KMP is 2.7.0-alpha01 or higher.
r
I have it
implementation("androidx:room:room-runtime:2.7.0-alpha01")
e
and you have the google maven repo?
r
Yes
Copy code
repositories {
        google()
        gradlePluginPortal()
        mavenCentral()
        maven(url = uri("<https://maven.google.com/>"))
        maven(url = uri("<https://plugins.gradle.org/m2/>"))
        maven(url = uri("<https://oss.sonatype.org/content/repositories/snapshots>"))
        maven(url = uri("<https://jcenter.bintray.com/>"))
        maven(url = uri("<https://jitpack.io>"))
    }