Hello! Is there any library for generating mocks c...
# kotlin-native
u
Hello! Is there any library for generating mocks compatible with kotlin/native?
n
I created Mockative for this purpose and we're using it extensively for our KMM project at Cardlay 🙂
u
hi! thank you for your response. I am trying to import Mockative but it cannot find plugin when adding
id("com.google.devtools.ksp")
n
You need to add
mavenCentral()
to your
repositories
section in your build.gradle file. It also says so in the README
u
yeah I have it, this is my repo conf:
Copy code
repositories {
    gradlePluginPortal()
    google()
    mavenCentral()
    maven(url = "<https://kotlin.bintray.com/kotlinx/>")
}
n
Hmmm... Please disregard my previous message. Have you tried following the KSP instructions on kotlinlang.org?
u
yeah I am getting same error