Skip to content

Commit 2da6a60

Browse files
committed
Fix apple platform archive errors related to minimum deployment targets
1 parent ec7cdf3 commit 2da6a60

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

templates/swift/Package.swift.twig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ import PackageDescription
44

55
let package = Package(
66
name: "{{spec.title | caseUcfirst}}",
7+
platforms: [
8+
.iOS("15.0"),
9+
.macOS("11.0"),
10+
.watchOS("6.0"),
11+
.tvOS("13.0"),
12+
],
713
products: [
814
.library(
915
name: "{{spec.title | caseUcfirst}}",

0 commit comments

Comments
 (0)