Skip to content

Commit cfbb5a2

Browse files
Merge pull request #364 from appwrite/fix-apple-archiving
Fix apple platform archive errors related to minimum deployment targets
2 parents 8f9cfe6 + 2da6a60 commit cfbb5a2

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)