4 questions
13 votes
1 answer
4k views
Editing a Package Dependency as a Local Package
Overview I have a project that uses a remote swift package. I would like to edit this package in the same project so that I can refine it based on the usage. Aim: To do this I am trying to add the ...
3 votes
1 answer
933 views
ITMS-90334: Invalid Code Signature Identifier when building via Xcode Cloud
I have started a small collection of helper code in a Swift Package for my own needs. If i include this package in my main project using Swift Package Manger and try to build it using Xcode Cloud, i ...
2 votes
1 answer
234 views
How to do top-of-tree development with Swift Package Manager and XCode?
So I am working on two packages in tandem, where Package A depends on Package B. Package A -> Package B Each package is in a separate git repository, and I would like to avoid having to push ...
0 votes
1 answer
233 views
What's the proper way to access a Swift Package item from Objective-C?
Scenario: I had built a Swift <-- package simple App that is working. Now I'm trying to convert this to a Objective-C <--- package app. Question #1: How to I formally import the package? I've ...