File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,11 @@ repositories {
38
38
}
39
39
```
40
40
41
- Add the library to dependencies:
41
+ Add libraries to dependencies:
42
42
``` kotlin
43
43
dependencies {
44
44
implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.2.0" )
45
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-bytestring:0.2.0" )
45
46
}
46
47
```
47
48
@@ -52,6 +53,7 @@ kotlin {
52
53
commonMain {
53
54
dependencies {
54
55
implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.2.0" )
56
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-bytestring:0.2.0" )
55
57
}
56
58
}
57
59
}
@@ -60,11 +62,16 @@ kotlin {
60
62
61
63
### Maven
62
64
63
- Add the library to dependencies:
65
+ Add libraries to dependencies:
64
66
``` xml
65
67
<dependency >
66
68
<groupId >org.jetbrains.kotlinx</groupId >
67
- <artifactId >kotlinx-io-core</artifactId >
69
+ <artifactId >kotlinx-io-core-jvm</artifactId >
70
+ <version >0.2.0</version >
71
+ </dependency >
72
+ <dependency >
73
+ <groupId >org.jetbrains.kotlinx</groupId >
74
+ <artifactId >kotlinx-io-bytestring-jvm</artifactId >
68
75
<version >0.2.0</version >
69
76
</dependency >
70
77
```
You can’t perform that action at this time.
0 commit comments