From dd7a45d265b717abdd09df370493b2eedeb29800 Mon Sep 17 00:00:00 2001 From: Renee Vandervelde Date: Sun, 30 Jun 2024 18:11:13 -0400 Subject: [PATCH] Add WatchOS Arm32 support. (#64) Adds the Arm32 platform of WatchOS (which is used in the series 1-3 watches) This platform doesn't appear to require any additional code to support, and was previously supported in 3.2.0, but broke in 3.3 when platform targets were added explicitly. --- colormath/build.gradle.kts | 1 + test/build.gradle.kts | 1 + 2 files changed, 2 insertions(+) diff --git a/colormath/build.gradle.kts b/colormath/build.gradle.kts index 8d3f206..f7dc546 100644 --- a/colormath/build.gradle.kts +++ b/colormath/build.gradle.kts @@ -28,6 +28,7 @@ kotlin { tvosArm64() tvosSimulatorArm64() watchosX64() + watchosArm32() watchosArm64() watchosSimulatorArm64() diff --git a/test/build.gradle.kts b/test/build.gradle.kts index 6df04b1..aec93a3 100644 --- a/test/build.gradle.kts +++ b/test/build.gradle.kts @@ -22,6 +22,7 @@ kotlin { tvosArm64() tvosSimulatorArm64() watchosX64() + watchosArm32() watchosArm64() watchosSimulatorArm64()