https://kotlinlang.org logo
#coroutines
Title
# coroutines
a

Archie

05/21/2020, 2:47 PM
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

efemoney

05/21/2020, 8:35 PM
-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi
👍 1
3 Views