Problem mit XML Parsing in KMP -App mit KTORAndroid

Forum für diejenigen, die für Android programmieren
Anonymous
 Problem mit XML Parsing in KMP -App mit KTOR

Post by Anonymous »

Ich versuche, eine API -Anruf in meiner KOTLIN Multiplattform (KMP) -App zu tätigen, die eine XML -Antwort zurückgibt. Ich möchte die Antwort richtig analysieren, aber meine App stürzt beim Ausführen von Android ab.

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")
KTOR HTTP -Client -Konfiguration
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

})
}
}
}
API -Aufruf -Implementierung

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()
}
Crash -Protokoll
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.

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post