Reputation: 208
While updating packages in XCode 13.3, I get SwiftPM.SPMRepositoryError error 3 and no further details. What is the meaning of this error? How to fix it?
I removed all packages and added them back one by one. But it doesn't seem to be triggered by any specific package. It seems to be triggered by any package.
Upvotes: 20
Views: 8296
Reputation: 1837
I had this problem and had to do a few things:
This fixed it for me
(*) I had to update Auth0.swift to 2.0, AlamoFire to 5.5.0, and ZenDesk to 5.4.1
Upvotes: 20
Reputation: 433
Right click the "Package Dependencies" in the project navigator, then select "Reset Package Caches" will fix this.
This problem happens because you probably cleaned some Xcode cache, and SPM caches got corrupted.
Upvotes: 39