Skip to content

Commit 0675079

Browse files
authored
Merge pull request #419 from Iterable/MOB-2280-exclude-plists
[MOB-2280] exclude plists from targets
2 parents a815f94 + 76e81b1 commit 0675079

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Package.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ let package = Package(
2020
targets: [
2121
.target(name: "IterableSDK",
2222
path: "swift-sdk",
23+
exclude: ["Info.plist"],
2324
resources: [
2425
.process("Resources"),
2526
]),
2627
.target(name: "IterableAppExtensions",
27-
path: "notification-extension"),
28+
path: "notification-extension",
29+
exclude: ["Info.plist"]),
2830
]
2931
)

0 commit comments

Comments
 (0)