This repository was archived by the owner on Feb 4, 2025. It is now read-only.
File tree 3 files changed +11
-11
lines changed
3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>>().configureEach
54
54
55
55
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach {
56
56
kotlinOptions {
57
- apiVersion = " 1.6 "
57
+ apiVersion = " 1.8 "
58
58
verbose = true
59
59
}
60
60
}
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- kotlin = " 1.6.21"
3
- kotest = " 5.3.2"
2
+ kotlin = " 1.8.21"
3
+ kotest = " 5.6.2"
4
+ ktor = " 2.3.2"
4
5
5
6
[libraries ]
6
7
kotest-assertions-core = { module = " io.kotest:kotest-assertions-core" , version.ref = " kotest" }
7
8
kotest-framework-engine = { module = " io.kotest:kotest-framework-engine" , version.ref = " kotest" }
8
9
kotest-framework-datatest = { module = " io.kotest:kotest-framework-datatest" , version.ref = " kotest" }
9
10
kotest-property = { module = " io.kotest:kotest-property" , version.ref = " kotest" }
10
11
11
- ktor-client-js = { module = " io.ktor:ktor-client-js" , version = " 2.0.3 " }
12
+ ktor-client-js = { module = " io.ktor:ktor-client-js" , version.ref = " ktor " }
12
13
13
14
[plugins ]
14
15
kotlin-multiplatform = { id = " org.jetbrains.kotlin.multiplatform" , version.ref = " kotlin" }
Original file line number Diff line number Diff line change 1
- import io.ktor.client.HttpClient
2
- import io.ktor.client.engine.js.Js
3
- import io.ktor.client.request.get
4
- import io.ktor.client.statement.HttpResponse
5
- import io.ktor.client.statement.readText
1
+ import io.ktor.client.*
2
+ import io.ktor.client.engine.js.*
3
+ import io.ktor.client.request.*
4
+ import io.ktor.client.statement.*
6
5
7
6
private val client = HttpClient (Js )
8
7
9
8
suspend fun fetch (): Dog {
10
- val resp = client.get< HttpResponse > (" https://dog.ceo/api/breeds/image/random" )
9
+ val resp = client.get(" https://dog.ceo/api/breeds/image/random" )
11
10
var message = " "
12
11
var status = " "
13
- JSON .parse<Dog >(resp.readText ()) { key, value ->
12
+ JSON .parse<Dog >(resp.bodyAsText ()) { key, value ->
14
13
when (key) {
15
14
" message" -> message = value.toString()
16
15
" status" -> status = value.toString()
You can’t perform that action at this time.
0 commit comments