is there a way to not always add `@ExperimentalCor...
# coroutines
a
is there a way to not always add
@ExperimentalCoroutinesApi
all the time when using coroutines flow?
Oh got it!
Copy code
freeCompilerArgs = freeCompilerArgs + "-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi"
e
-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi
👍 1