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
I'm trying to build a library that uses SWCompression for watchOS, but it fails with:
error: The package product 'BitByteData' requires minimum platform version 5.0 for the watchOS platform, but this target supports 4.0 (in target 'SWCompression' from project 'SWCompression')
I noticed BitByteData's released version (2.0.2) Package.swift not defining any .platforms, perhaps cutting a new release for this would fix it.
The text was updated successfully, but these errors were encountered:
mickeyl
added a commit
to Cornucopia-Swift/CornucopiaCore
that referenced
this issue
Jun 14, 2023
This would fix compilation for `watchOS`, however it's blocked by
tsolomko/SWCompression#44.
Fixing this locally is easy, just download `SWCompression` and make it
depend on the `develop` branch of `BitBake`, where the missing
`.platform` statement is given.
A new version of BitByteData has been released, 2.0.3, that should address this issue. Please don't forget to run swift package update (or whatever you use as your dependency manager) to get it.
I'm trying to build a library that uses
SWCompression
for watchOS, but it fails with:I noticed
BitByteData
's released version (2.0.2)Package.swift
not defining any.platforms
, perhaps cutting a new release for this would fix it.The text was updated successfully, but these errors were encountered: