Hello, I tried to update my gradle file to ktor 0....
# ktor
v
Hello, I tried to update my gradle file to ktor 0.9.4 but I had this error, do you know how to solve this please ?
1
e
add
maven { url "<http://kotlin.bintray.com/kotlinx>" }
to repositories
Copy code
repositories {
    mavenCentral()
    jcenter()
    maven { url "<http://kotlin.bintray.com/ktor>" }
    maven { url "<http://kotlin.bintray.com/kotlinx>" }
}
v
Perfect thanks !