Description
Xcode 27 beta no longer supports iOS deployment targets below iOS 15 — building against an SDK whose Package.swift declares a lower floor (or no floor) produces The iOS deployment target ... is set to X.0, but the range of supported deployment target versions is 15.0 to ... warnings on every build.
This package does not declare a platforms array in its Package.swift, so SwiftPM applies a default floor below iOS 15, which triggers these warnings under Xcode 27.
Request
Please add a platforms: [.iOS(.v15)] declaration to Package.swift (and the matching deployment target in the project/podspec) so the package builds cleanly under Xcode 27.
Environment
- Xcode 27 beta
- SwiftPM integration
Description
Xcode 27 beta no longer supports iOS deployment targets below iOS 15 — building against an SDK whose
Package.swiftdeclares a lower floor (or no floor) producesThe iOS deployment target ... is set to X.0, but the range of supported deployment target versions is 15.0 to ...warnings on every build.This package does not declare a
platformsarray in itsPackage.swift, so SwiftPM applies a default floor below iOS 15, which triggers these warnings under Xcode 27.Request
Please add a
platforms: [.iOS(.v15)]declaration toPackage.swift(and the matching deployment target in the project/podspec) so the package builds cleanly under Xcode 27.Environment