The easiest option to add a Swift package is by entering the package URL in the search field in the top right . The package URL is the location where the Swift Package Manager can find the Package. swift file of the package, that is, the manifest of the package. For RxSwift, that simply means adding the GitHub URL.
Read moreHow do I update Swift package dependencies?
To resolve, Open the project from the project panel, select the project (not the targets), then select the “Swift Packages” tab. Double click on the package you want to update and change the minimum version to the next major version.
Read moreHow do I add a Swift package to an existing Xcode project?
You can add your package by going to “File” then “Swift Packages” then “Add Package Dependency.. .” Paste the repository’s URL into the field above then click “next”. Xcode will walk you through the rest of the steps. You can learn more at this WWDC talk.27 Oca 2017
Read moreHow do I add a Swift package dependencies in Xcode 13?
To add a package dependency to your Xcode project, select File > Add Packages and enter its repository URL . You can also navigate to your target’s General pane, and in the “Frameworks, Libraries, and Embedded Content” section, click the + button, select Add Other, and choose Add Package Dependency.
Read more