https://kotlinlang.org logo
Title
m

matej

11/24/2017, 3:48 PM
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

satejs

11/24/2017, 4:25 PM
I read somewhere that it's production-worthy, and will be moved to a non experimental tag in the next major release
l

louiscad

11/24/2017, 6:46 PM
@matej You can add a flag to your build.gradle file to remove the warning
d

dzaitsev

11/27/2017, 5:29 PM
-Xcoroutines=enable
to the rescue
l

louiscad

11/27/2017, 8:46 PM
@matej In gradle, it looks like this FYI:
kotlin {
    experimental {
        coroutines "enable"
    }
}