I am starting Ktor based client in android and I want to use any of serializers, currently the one from kotlinx but result is the same for others - JsonFeature is not found (highlighted read in snippet below). What am I missing?
class StreamClient {
val client: HttpClient
init {
client = HttpClient(Android) {
install(JsonFeature) {
serializer = KotlinxSerializer()
}
}
}
}
Gralde:
implementation("io.ktor:ktor-client-core:$ktor_version")
implementation("io.ktor:ktor-client-android:$ktor_version")
implementation("io.ktor:ktor-client-serialization:$ktor_version")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0")
question from:
https://stackoverflow.com/questions/65952200/jsonfeature-for-ktor-client-is-unresoved 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…