Thomas
05/25/2019, 2:44 PMimplementation "io.ktor:ktor-client-core-jvm:1.2.0"
client.get<ResponseClass>{}
.
I manually excluded kotlin-reflect
in Gradle from my project, and as expected, client.get
(put, post, delete as well) no longer works.
I just need a HttpResponse
so I can just use the client.call
method instead (which does not use reflection). So for now, I have a solution.e5l
05/28/2019, 2:16 PMserebit
05/29/2019, 4:24 AMThomas
05/30/2019, 1:40 PM