You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, this is my first time using Swift Package manager to hopefully I am doing things right. I have added your dependency and within PassEncoder I am getting the following issues which I think are preventing it from building properly so my other classes can't use it.
pe
The text was updated successfully, but these errors were encountered:
Thanks for opening this issue! The requirements in the readme are wrong (as #7) and should be updated. Unfortunately, the Process API used in signing is macOS-only. It's a future goal of this project to be able to run without using Process at all, so that it can run on iOS, tvOS, and watchOS too.
The reason you are receiving the temporaryDirectory error is because there is no compatibility information in the Package.swift file, so Xcode doesn't know that the project targets iOS/tvOS 10+, where this API was added. Once uses of Process are eliminated and the Package.swift is updated to indicate non-macOS support, this error should go away.
aydenp
changed the title
Process is not available on non-macOS platforms
iOS/tvOS/watchOS support: remove Process, stop invoking OpenSSL
Nov 25, 2021
If you're facing this issue, it is because you are trying to build the library for iOS, tvOS, or watchOS. It is currently only supported on macOS and Linux.
Hello, this is my first time using Swift Package manager to hopefully I am doing things right. I have added your dependency and within PassEncoder I am getting the following issues which I think are preventing it from building properly so my other classes can't use it.
pe
The text was updated successfully, but these errors were encountered: