As the title says, I set the platforms for my swift package to iOS 15 and macOS 12.
platforms: [
.iOS(.v15), //error here: 'v15' is unavailable
.macOS(.v12) //error here: 'v12' is unavailable
],
I saw an older post in the betas saying they hadn't been added but is this still true?
I'm using Xcode 13.2.1
1 Like
t089
(Tobias)
2
Are you using: // swift-tools-version:5.5?
2 Likes
Oh, I'm using version 5.3, how can I update it?
t089
(Tobias)
4
First line in Package.swift:
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
// ... rest of the file
1 Like