Skip to content

Commit f7f4d20

Browse files
authored
Enabled target watchosDeviceArm64 (#138)
1 parent 4085378 commit f7f4d20

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
66
project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [Unreleased]
9+
### Changed
10+
- Add `watchosDeviceArm64` target (#137)
11+
812
## [0.7.0] - 2023-02-25
913
### Changed
1014
- Add support for linuxArm64 (#134)

build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ kotlin {
4444
watchosX86()
4545
watchosX64()
4646
watchosSimulatorArm64()
47+
watchosDeviceArm64()
4748
tvosArm64()
4849
tvosX64()
4950
tvosSimulatorArm64()
@@ -120,6 +121,8 @@ kotlin {
120121
val watchosX86Test by getting { dependsOn(apple32Test) }
121122
val watchosSimulatorArm64Main by getting { dependsOn(apple64Main) }
122123
val watchosSimulatorArm64Test by getting { dependsOn(apple64Test) }
124+
val watchosDeviceArm64Main by getting { dependsOn(apple64Main) }
125+
val watchosDeviceArm64Test by getting { dependsOn(apple64Test) }
123126
val tvosArm64Main by getting { dependsOn(apple64Main) }
124127
val tvosArm64Test by getting { dependsOn(apple64Test) }
125128
val tvosX64Main by getting { dependsOn(apple64Main) }

publish.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ tasks.register('publishMac') {
159159
dependsOn 'publishWatchosArm32PublicationToMavenRepository'
160160
dependsOn 'publishWatchosArm64PublicationToMavenRepository'
161161
dependsOn 'publishWatchosSimulatorArm64PublicationToMavenRepository'
162+
dependsOn 'publishWatchosDeviceArm64PublicationToMavenRepository'
162163
dependsOn 'publishWatchosX64PublicationToMavenRepository'
163164
dependsOn 'publishWatchosX86PublicationToMavenRepository'
164165
dependsOn 'publishMacosArm64PublicationToMavenRepository'

0 commit comments

Comments
 (0)