Is there any guide on how to remove cocoapods from...
# compose-ios
r
Is there any guide on how to remove cocoapods from an existing multiplatform project without breaking the build?
j
not exactly a guide but tried to capture key steps here https://twitter.com/joreilly/status/1664392205853769729?s=20
That links to following then for setting up `embedAndSignAppleFrameworkForXcode`usage https://kotlinlang.org/docs/multiplatform-mobile-understand-project-structure.html#ios-application
r
Thanks i'll give it a shot
Using this approach, is it still possible to consume ios pod libraries in the multiplatform module?
j
I think once you remove use of cocoapods then that's no longer an option....but perhaps some other way around that. In most projects I have started using Swift Packages as way to consume other dependencies in the SwiftUI clients.
2
c
ooh. ill try this. i finally got it to work, but wanna see if i missed anything