Code: Select all
implementation("io.ktor:ktor-serialization-kotlinx-xml:3.1.2")
implementation("io.ktor:ktor-client-cio:2.3.8")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.6.0")
Für das Tätigen von API -Aufrufen verwende ich KTOR mit XML -Serialisierung:
Code: Select all
single(named("xmlHttpClient")) {
HttpClient(CIO) {
install(ContentNegotiation) {
xml(format = XML {
xmlDeclMode = XmlDeclMode.Charset
indent = 4
autoPolymorphic = true
})
}
}
}
Code: Select all
override suspend fun getAllNews(): List {
val newsResponse: NewsAPIResponse = xmlHttpClient.get(Constant.GET_ALL_NEWS).body()
newsResponse.channel.items.forEach { item ->
println("Title: ${item.title}")
println("Date: ${item.pubDate}")
}
return newsResponse.channel.items
// return emptyList()
}
Wenn ich die Android -App ausführe, stürzt es mit dem folgenden Fehler ab:
Code: Select all
java.lang.NoSuchMethodError: No static method ByteChannel(Z)Lio/ktor/utils/io/ByteChannel; in class Lio/ktor/utils/io/ByteChannelKt; or its super classes (declaration of 'io.ktor.utils.io.ByteChannelKt' appears in /data/app/~~6aIPstT4YAMeqQLYjSq-oA==/com.db.mycity-Go4dcLSkzg6-8_ZtYrZySQ==/base.apk!classes24.dex)
< /code>
Frage < /strong> < /p>
[list]
[*] Was könnte diesen Absturz verursachen? ktor-serialization-kotlinx-xml
[/list]
Eine Anleitung zur Lösung dieses Problems wäre sehr geschätzt.