Christian Würthenr
10/22/2024, 1:09 PMIgnoring file '~/Projects/someapp/app-ios-base/build/xcode-frameworks/Debug/watchos11.0/SomeAppBase.framework/SomeAppBase': fat file missing arch 'arm64', file has 'arm64_32'
I assume this is some config issue in gradle to force both archs, but not sure how to do this. In gradle I have:
listOf(
iosX64(),
iosArm64(),
iosSimulatorArm64(),
watchosX64(),
watchosArm32(),
watchosArm64(),
watchosSimulatorArm64(),
).forEach {
it.binaries.framework {
baseName = "SomeAppBase"
isStatic = true
wrappedProjects.forEach { p ->
export(p)
}
target
}
}
russhwolf
10/22/2024, 1:42 PMwatchosDeviceArm64()
Christian Würthenr
10/22/2024, 1:47 PMNo matching variant of io.ktor:ktor-client-darwin:2.3.11 was found. The consumer was configured to find a library for use during 'kotlin-api', preferably optimized for non-jvm, as well as attribute 'org.jetbrains.kotlin.native.target' with value 'watchos_device_arm64', attribute 'org.jetbrains.kotlin.platform.type' with value 'native' but:
Christian Würthenr
10/22/2024, 1:50 PMrusshwolf
10/22/2024, 1:53 PMChristian Würthenr
10/22/2024, 1:54 PMade
10/22/2024, 1:56 PMChristian Würthenr
10/22/2024, 2:01 PMChristian Würthenr
10/22/2024, 2:01 PMade
10/22/2024, 2:03 PMrusshwolf
10/22/2024, 2:04 PMade
10/22/2024, 2:06 PMChristian Würthenr
10/22/2024, 2:15 PMChristian Würthenr
10/22/2024, 2:23 PMcolormath
and napier
, the latter being a real issue 😄
Thanks guys!Christian Würthenr
10/22/2024, 2:59 PM