Skip to content

Commit d43467d

Browse files
committed
Merge branch 'master' into develop
2 parents 18fa116 + 7981999 commit d43467d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,20 @@ repository {
105105
Use `org.jetbrains.kotlinx:kotlinx-coroutines-core-js:<version>` artifact in your Gradle/Maven dependencies
106106
or install [`kotlinx-coroutines-core`](https://www.npmjs.com/package/kotlinx-coroutines-core) package via NPM.
107107

108+
### Android
109+
110+
Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
111+
module as dependency when using `kotlinx.coroutines` on Android:
112+
113+
```groovy
114+
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.3'
115+
```
116+
117+
This gives you access to Android [UI](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/kotlinx.coroutines.experimental.android/-u-i.html)
118+
coroutine dispatcher and also makes sure that in case of crashed coroutine with unhandled exception this
119+
exception is logged before crashing Android application, similarly to the way uncaught exceptions in
120+
threads are handled by Android runtime.
121+
108122
### ProGuard
109123

110124
In obfuscated code, fields with different types can have the same names,

0 commit comments

Comments
 (0)