We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 715acd3 commit f015be1Copy full SHA for f015be1
README.md
@@ -106,6 +106,32 @@ repository {
106
}
107
```
108
109
+### Gradle Kotlin DSL
110
+
111
+Add dependencies (you can also add other modules that you need):
112
113
+```groovy
114
+dependencies {
115
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:0.30.2")
116
+}
117
+```
118
119
+And make sure that you use the latest Kotlin version:
120
121
122
+plugins {
123
+ kotlin("jvm") version "1.2.70"
124
125
126
127
+Make sure that you have either `jcenter()` or `mavenCentral()` in the list of repositories:
128
129
130
+repository {
131
+ jcenter()
132
133
134
135
### Multiplatform
136
137
Core modules of `kotlinx.coroutines` are also available for
0 commit comments