<@U0T98BYTG> You can add `"-Xopt-in=kotlinx.corout...
# flow
a
@Jacob Applin You can add
"-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi"
to compiler args. Like this:
Copy code
compileKotlin {
    kotlinOptions {
        jvmTarget = "1.8"
        apiVersion = "1.3"
        languageVersion = "1.3"
        freeCompilerArgs = ["-progressive", "-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi"]
    }
}
j
Thanks I'll try this