After updating from compose multiplatform `1.4.0` ...
# compose-ios
a
After updating from compose multiplatform
1.4.0
to
1.5.0-beta02
and kotlin
1.8.21
to
1.9.0
, I’m getting thousands of warnings when building the iOS app in debug mode like:
warning: (x86_64) could not find object file symbol for symbol _krefs:platform.UIKit.UITouchPhase
I have no idea how to resolve it. I can do this to get rid of the warnings but it makes debug builds take way longer:
Copy code
cocoapods {
    xcodeConfigurationToNativeBuildType["Debug"] = NativeBuildType.RELEASE
}
👍 1
💯 1