Hey Guys! In my multi platform project, I have an ...
# multiplatform
u
Hey Guys! In my multi platform project, I have an umbrella module that packages all shared modules for use in the ios app. In one of shared modules, I use the TwilioConversationsClient cocoapod. Till Xcode 14 and kotlin 1.7.20 everything worked fine on ios. On updating to Xcode 15 and bumping kotlin to 1.9.20, building fo ios results in error
Framework 'TwilioConversationsClient' not found.
This is how I have added the pod information in the module's build.gradle
Copy code
cocoapods {
    summary = "Twilio Conversation"
    homepage = "todo"
    ios.deploymentTarget = "13.0"
    framework {
        baseName = "TwilioConversations"
    }
    pod("TwilioConversationsClient")
}
Any help here is appreciated. Slack Conversation