https://kotlinlang.org logo
#ktor
Title
# ktor
v

vincent.brule

08/30/2018, 10:14 AM
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

enleur

08/30/2018, 10:24 AM
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

vincent.brule

08/30/2018, 10:30 AM
Perfect thanks !