I am trying to create a library that I can use in my existing Xcode project (iOS app). I know that Swift Package Manager now supports creating an Xcode project using the command
swift package generate-xcodeproj
But I am not creating a new project. In my existing project with C objects and Swift Files, how can I use the newly created Swift package?
How to add Package.swift file to my current project?
source
share