Gradle deps: ``` //ktor-client implementation "io...
# ktor
d
Gradle deps:
Copy code
//ktor-client
	implementation "io.ktor:ktor-client-core:$ktor_version"
	implementation "io.ktor:ktor-client-apache:$ktor_version"
	implementation "io.ktor:ktor-client-json:$ktor_version"
    testCompile "io.ktor:ktor-server-test-host:$ktor_version"
s
Some class names were moved around leading up to 1.0. Maybe that’s it?
d
Thanks, but I tried looking and the downloaded jars in external deps in Intellij, the package names seem to be the same... maybe the deps changed because of multiplatform support or something?
👌 1
s
If you use apache.. I suspect it’s JVM target.. so for json dep you need
...json-jvm
? At least I have it my demo try out
👍🏼 1