Skip to content

Commit 87bb0ea

Browse files
authored
Add watchosDeviceArm64 to Okio supported projects. (#2920)
As of [Okio 3.7.0](https://github.com/square/okio/blob/master/CHANGELOG.md#version-369) (currently using `3.9.0`) projects that depend on Okio can start building and releasing for `watchosDeviceArm64`.
1 parent f2b0258 commit 87bb0ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

buildSrc/src/main/kotlin/native-targets-conventions.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ kotlin {
3636

3737
// Tier 3
3838
mingwX64()
39+
watchosDeviceArm64()
3940
// https://github.com/square/okio/issues/1242#issuecomment-1759357336
4041
if (doesNotDependOnOkio(project)) {
4142
androidNativeArm32()
4243
androidNativeArm64()
4344
androidNativeX86()
4445
androidNativeX64()
45-
watchosDeviceArm64()
4646

4747
// Deprecated, but not removed
4848
linuxArm32Hfp()
@@ -61,4 +61,4 @@ kotlin {
6161

6262
fun doesNotDependOnOkio(project: Project): Boolean {
6363
return !project.name.contains("json-okio") && !project.name.contains("json-tests")
64-
}
64+
}

formats/json-okio/api/kotlinx-serialization-json-okio.klib.api

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Klib ABI Dump
2-
// Targets: [iosArm64, iosSimulatorArm64, iosX64, js, linuxArm64, linuxX64, macosArm64, macosX64, mingwX64, tvosArm64, tvosSimulatorArm64, tvosX64, wasmJs, wasmWasi, watchosArm32, watchosArm64, watchosSimulatorArm64, watchosX64]
2+
// Targets: [iosArm64, iosSimulatorArm64, iosX64, js, linuxArm64, linuxX64, macosArm64, macosX64, mingwX64, tvosArm64, tvosSimulatorArm64, tvosX64, wasmJs, wasmWasi, watchosArm32, watchosArm64, watchosDeviceArm64, watchosSimulatorArm64, watchosX64]
33
// Rendering settings:
44
// - Signature version: 2
55
// - Show manifest properties: true

0 commit comments

Comments
 (0)