Are there any plans to support swiftpm as opposed ...
# compose-ios
a
Are there any plans to support swiftpm as opposed to cocoapods?
👀 1
s
Correctly if I’m wrong but is possible to generate a
.framework
or a
.xcframework
and bind it your self using anything you like For example KMMBridge uses the same resulted binary (xcframework) for SPM and Cocoapods. Cocoapods is only for convenience because it also allows easily do resource sharing. But I truly don’t know if there is any limitation in Compose iOS that does not let you use xcframework.
h
So yes, this is exactly what you have to do: create the XCFramework and add a package manifest file.
a
That's perfect, thank you so much for the link!