Is the warning for coroutines `The feature "corout...
# coroutines
m
Is the warning for coroutines
The feature "coroutines" is experimental
something new? I didn't notice it until today, and now all my
run
and
launch
invocations are highlighted
s
I read somewhere that it's production-worthy, and will be moved to a non experimental tag in the next major release
l
@matej You can add a flag to your build.gradle file to remove the warning
d
-Xcoroutines=enable
to the rescue
l
@matej In gradle, it looks like this FYI:
Copy code
kotlin {
    experimental {
        coroutines "enable"
    }
}