user1046037
user1046037

Reputation: 17735

Editing a Package Dependency as a Local Package

Overview

Aim:

Reference:

https://developer.apple.com/documentation/swift_packages/editing_a_package_dependency_as_a_local_package

Problem:

Xcode Project with Swift Package

I have been breaking my head over it. Any help on this would be much appreciated.

Xcode Version:

Upvotes: 13

Views: 3432

Answers (1)

Andrew
Andrew

Reputation: 28539

The reason you cannot see the content of the package is that you have it open in another Xcode instance.

You can only edit a package in one Xcode instance at a time.

I find closing down Xcode completely, then opening up the particular project that I want to edit the package in solves the problem.

Upvotes: 16

Related Questions