Is there a way to use the new `1.3.0-beta-1` relea...
# ktor
m
Is there a way to use the new
1.3.0-beta-1
release from gradle? It isn't published on maven central or jcenter yet but I need the ktor client proxy support. Is there another repo I can add to my gradle file that has it?
d
What version of gradle are you using?
You probably need to upgrade to at least
5.4.1
.
m
Got it working, I needed to add
Copy code
maven {
        url  "<https://kotlin.bintray.com/ktor>"
}
to my gradle repositories. It now resolves the
1.3.0-beta-1
version published there.
👍🏼 4