SQLDelight update from 2.0.0 to 2.0.1 breaks iOS b...
# squarelibraries
v
SQLDelight update from 2.0.0 to 2.0.1 breaks iOS build from xcode for KMP project for me with this:
Copy code
'/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java'' finished with non-zero exit value 1
Android is fine. Is there are min gradle or something dependency I must to bump for 2.0.1?
1
Copy code
agp = "8.1.3"
kotlin = "1.9.20"
compose = "1.5.11"
sqlDelight = "2.0.0"
Current setup
java 17.0.9
Copy code
Task :shared:cinteropFirebaseCrashlyticsIosSimulatorArm64 FAILED
e: Could not find "co.touchlab:stately-common" in [../.konan/klib, ../.konan/kotlin-native-prebuilt-macos-aarch64-1.9.21/klib/common, ../.konan/kotlin-native-prebuilt-macos-aarch64-1.9.21/klib/platform/ios_simulator_arm64]
error: Process 'command '/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java'' finished with non-zero exit value 1
Building for iOS from AS gives more context. FB crashlytics task?
Seems like the Crashliytics can't get dependency for the stately-common when I bump SQLDelight version. Explicitly adding
Copy code
implementation("co.touchlab:stately-common:2.0.6")
for iosMain fixes issue. I love KMP>