import io.ktor.network.tls.* is giving me unresolv...
# ktor
o
import io.ktor.network.tls.* is giving me unresolved reference
d
To enable them you will need to include the ktor-network-tls artifact
Have you included the ktor-network-tls artifact?
o
no
d
Try to include it, tls related functionality yields in that artifact
o
compile "ktor-network-tls:$ktor_version"
this?
d
you will have to also include the group id. It should be something like this:
compile "io.ktor:ktor-network:$ktor_version"
o
ok
thts already included
d
oops sorry
forgot to include the
-tls
compile "io.ktor:ktor-network-tls:$ktor_version"
o
ok
thnx
👌 2