You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
8
-
This is a companion version for Kotlin 1.3.0-rc-116 release.
8
+
This is a companion version for Kotlin 1.3.0-rc-146 release.
9
9
10
10
**NOTE**: This is the latest experimental release. See [COMPATIBILITY.md](COMPATIBILITY.md) for details on migration.
11
11
@@ -68,33 +68,35 @@ Add dependencies (you can also add other modules that you need):
68
68
<dependency>
69
69
<groupId>org.jetbrains.kotlinx</groupId>
70
70
<artifactId>kotlinx-coroutines-core</artifactId>
71
-
<version>0.30.2</version>
71
+
<version>0.30.2-eap13</version>
72
72
</dependency>
73
73
```
74
74
75
75
And make sure that you use the latest Kotlin version:
76
76
77
77
```xml
78
78
<properties>
79
-
<kotlin.version>1.3.0-rc-116</kotlin.version>
79
+
<kotlin.version>1.3.0-rc-146</kotlin.version>
80
80
</properties>
81
81
```
82
82
83
+
While Kotlin 1.3 is still in release candidate status, in order to depend on it you should add eap repository: `https://dl.bintray.com/kotlin/kotlin-eap`.
84
+
83
85
### Gradle
84
86
85
87
Add dependencies (you can also add other modules that you need):
This gives you access to Android [Dispatchers.Main](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/kotlinx.coroutines.android/kotlinx.coroutines.-dispatchers/index.html)
126
128
coroutine dispatcher and also makes sure that in case of crashed coroutine with unhandled exception this
0 commit comments