Skip to content

Commit

Permalink
KTOR-7583 Enable missing native targets in ktor-serialization-kotlinx…
Browse files Browse the repository at this point in the history
…-xml
  • Loading branch information
osipxd committed Oct 16, 2024
1 parent 2b4921a commit 91ff9be
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
3 changes: 1 addition & 2 deletions buildSrc/src/main/kotlin/NativeUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ fun Project.watchosTargets(): List<String> = with(kotlin) {
watchosArm64(),
watchosSimulatorArm64(),
// ktor-server-config-yaml: because of dependency on YAML library: https://github.com/Him188/yamlkt/issues/67
// ktor-serialization-kotlinx-xml: because of dependency on xmlutil library: https://repo.maven.apache.org/maven2/io/github/pdvrieze/xmlutil/ // ktlint-disable max-line-length
if ((project.name != "ktor-server-config-yaml") && (project.name != "ktor-serialization-kotlinx-xml")) {
if (project.name != "ktor-server-config-yaml") {
watchosDeviceArm64()
} else {
null
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Klib ABI Dump
// Targets: [iosArm64, iosSimulatorArm64, iosX64, js, linuxArm64, linuxX64, macosArm64, macosX64, mingwX64, tvosArm64, tvosSimulatorArm64, tvosX64, wasmJs, watchosArm32, watchosArm64, watchosSimulatorArm64, watchosX64]
// Targets: [androidNativeArm32, androidNativeArm64, androidNativeX64, androidNativeX86, iosArm64, iosSimulatorArm64, iosX64, js, linuxArm64, linuxX64, macosArm64, macosX64, mingwX64, tvosArm64, tvosSimulatorArm64, tvosX64, wasmJs, watchosArm32, watchosArm64, watchosDeviceArm64, watchosSimulatorArm64, watchosX64]
// Rendering settings:
// - Signature version: 2
// - Show manifest properties: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@
# xmlutil uses DOM API under the hood so it doesn't support Node.js.
# Issue: https://github.com/pdvrieze/xmlutil/issues/83
target.js.nodeJs=false
# xmlutil doesn't provide android native targets
# Issue: https://github.com/pdvrieze/xmlutil/issues/240
target.androidNative=false

0 comments on commit 91ff9be

Please sign in to comment.