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 {
3838}
3939```
4040
41- Add the library to dependencies:
41+ Add libraries to dependencies:
4242``` kotlin
4343dependencies {
4444 implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.2.0" )
45+ implementation(" org.jetbrains.kotlinx:kotlinx-io-bytestring:0.2.0" )
4546}
4647```
4748
@@ -52,6 +53,7 @@ kotlin {
5253 commonMain {
5354 dependencies {
5455 implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.2.0" )
56+ implementation(" org.jetbrains.kotlinx:kotlinx-io-bytestring:0.2.0" )
5557 }
5658 }
5759 }
@@ -60,11 +62,16 @@ kotlin {
6062
6163### Maven
6264
63- Add the library to dependencies:
65+ Add libraries to dependencies:
6466``` xml
6567<dependency >
6668 <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 >
6875 <version >0.2.0</version >
6976</dependency >
7077```
You can’t perform that action at this time.
0 commit comments