I have a dependency in my project that only available as a pod.
Also there is a local Swift Package Module in project which is require this dependency to be used.
Is there any way to use Cocoapod dependencies in local swift package module?
I have a dependency in my project that only available as a pod.
Also there is a local Swift Package Module in project which is require this dependency to be used.
Is there any way to use Cocoapod dependencies in local swift package module?
Did you found a solution for this? Im having the same problem
Depending on the complexity of the pod, you could vendor in a submodule or the like and just write a swift package declaration for it. Or even better, write it and send it up as a pull request to the project. The harder part would be if there are lots of transitive dependencies, but a lot of the popular pods also have Swift packages already written.