Skip to content

Enable support for watchosX64 #119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ kotlin {
target("watchosArm32")
target("watchosArm64")
target("watchosX86")
target("watchosX64")
target("tvosArm64")
target("tvosX64")
}
Expand Down Expand Up @@ -152,7 +153,7 @@ kotlin {
commonMain {
dependencies {
api("org.jetbrains.kotlin:kotlin-stdlib-common")
compileOnly("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
}
}

Expand Down Expand Up @@ -192,7 +193,6 @@ kotlin {
val jsMain by getting {
dependencies {
api("org.jetbrains.kotlin:kotlin-stdlib-js")
api("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
implementation(npm("@js-joda/core", "3.2.0"))
}
}
Expand All @@ -206,9 +206,6 @@ kotlin {

val nativeMain by getting {
dependsOn(commonMain.get())
dependencies {
api("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
}
}

val nativeTest by getting {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ group=org.jetbrains.kotlinx
version=0.2.0
versionSuffix=SNAPSHOT

serializationVersion=1.1.0
serializationVersion=1.2.1

kotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.mpp.enableCompatibilityMetadataVariant=true
Expand Down
1 change: 1 addition & 0 deletions serialization/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ kotlin {
target("watchosArm32")
target("watchosArm64")
target("watchosX86")
target("watchosX64")
target("tvosArm64")
target("tvosX64")
}
Expand Down