[kotlin-client][multiplatform] add iosSimulatorArm64 target (#17058)

This commit is contained in:
Csaba Kozák
2023-11-18 03:47:23 +01:00
committed by GitHub
parent 5e7f2f274c
commit 3e5049565d
5 changed files with 25 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ repositories {
kotlin {
jvm()
ios { binaries { framework { freeCompilerArgs += "-Xobjc-generics" } } }
iosSimulatorArm64 { binaries { framework { freeCompilerArgs += "-Xobjc-generics" } } }
js {
browser()
nodejs()
@@ -66,6 +67,10 @@ kotlin {
val iosTest by getting
val iosSimulatorArm64Main by getting
val iosSimulatorArm64Test by getting
val jsMain by getting {
dependencies {
api("io.ktor:ktor-client-js:$ktor_version")