Post

Replies

Boosts

Views

Activity

Reply to mapped file has no team id and is not a platform binary (signed with custom identity or adhoc?
Just had this problem and it happened after I had Xcode apply recommended changes to the project. It changed the settings for CODE_SIGN_IDENTITY to "-" from what it was. I changed it to "Apple Developer" at the project level and cleared it at the target levels so they would all use the same setting. Then I cleaned and rebuilt. I was able to launch the app after that. I've found that recently instead of having iOS Developer and Mac Developer there is now an Apple Developer option which seems to apply to all supported platforms. I expect this is the right option to use going forward.
Aug ’22
Reply to How can I support XCTest extensions with a Swift package?
I made 2 changes to fix the problem. First, I added XCTest as a linked framework in Package.swift in the Hela package. Second, I found that simply adding a Swift package to an Xcode project causes the primary build target to link the Hela package which links XCTest. Since that will only work with test targets linking that primary target should be removed. Instead only link the test target which will use the Hela package. The details are covered on the issue on GitHub. See the commits for the changes.
Nov ’21