tylerwilson
08/15/2025, 1:43 AMzsmb
08/15/2025, 6:50 AMtylerwilson
08/15/2025, 12:51 PMKLIB resolver: Could not find "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate" in...
If I comment out the cinterop section:
val main by this.compilations.getting {
val EverCommercePaymentsIosSdk by cinterops.creating {
defFile("${projectDir}/libs/EverCommercePaymentsIosSdk.def")
compilerOpts(
"-framework", "EverCommercePaymentsIosSdk",
"-F${projectDir}/libs/EverCommercePaymentsIosSdk.xcframework/${slice}/"
)
}
}
then that error goes away. But of course then the iOS target will not build at all. even more errors.
So is it possible the compiler itself is calling out to this package, and cannot find the version it wants? This is Kotlin 2.2.10.tylerwilson
08/15/2025, 1:00 PM