I'm trying to use the shiny new fx. I tried to run...
# arrow
m
I'm trying to use the shiny new fx. I tried to run my test code through
Environment().unsafeRunAsync
but neither IntelliJ nor Gradle via CLI seems to run the arrow-meta annotation processor. In
build.gradle.kts
I have:
Copy code
plugins {
    id("org.jetbrains.kotlin.jvm") version "1.4.10"
    kotlin("kapt") version "1.4.10"
}

dependencies {
    implementation(platform("io.arrow-kt:arrow-stack:0.11.0"))
    implementation("io.arrow-kt:arrow-fx")
    implementation("io.arrow-kt:arrow-mtl") // from the 0.10 version
    implementation("io.arrow-kt:arrow-fx-mtl") // from the 0.10 version
    implementation("io.arrow-kt:arrow-syntax")
    kapt("io.arrow-kt:arrow-meta:0.11.0")
}
Is there anything I'm missing from the build configuration? Am I using
Environment
correctly?
Solved:
arrow-fx-coroutines
dependency was missing.
p
arrow-fx is not related to arrow-fx-cotoutines. With the last one the old arrow-fx become useless
👍 1
☝️ 1