Hi guys! I bumped Kotlin and SKIE versions and get...
# touchlab-tools
v
Hi guys! I bumped Kotlin and SKIE versions and get an error on CI, which says nothing to me, I don’t know where to look, locally
./gradlew :allshared:skieUnpackSwiftSourcesTemperSharedReleaseFrameworkIosArm64
runs without errors.
Copy code
> Task :allshared:skieUnpackSwiftSourcesTemperSharedReleaseFrameworkIosArm64
e: Compilation failed: IrTypeAliasSymbolImpl is already bound. Signature: io.ktor.utils.io.core/ByteReadPacket|null[0]. Owner: TYPEALIAS name:ByteReadPacket visibility:public expandedType:kotlinx.io.Source
> Task :allshared:linkTemperSharedReleaseFrameworkIosArm64 FAILED
 * Source files: 
 * Compiler version: 2.1.0
 * Output kind: FRAMEWORK
This is what is changed in that PR
t
Hi, could you try disabling SKIE using:
Copy code
skie {
  isEnabled = false
}
And running the same task again to see if that succeeds? If it does, then could you share what libraries you expose from the shared module to framework? Thanks!
v
without skie I got a proper error message, the problem was caused by ktor, had to bump it to 3.0.1 and everything builds successfully now.