From 4ec9b9187c8c141141dcae5ab5ac173a3337367f Mon Sep 17 00:00:00 2001 From: Jithin Roy Date: Tue, 13 Apr 2021 10:48:13 -0700 Subject: [PATCH] chore: Exclude resources file from SPM --- Package.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 349c997d..54bd6c49 100644 --- a/Package.swift +++ b/Package.swift @@ -17,12 +17,14 @@ let package = Package( .target( name: "AppSyncRealTimeClient", dependencies: ["Starscream"], - path: "AppSyncRealTimeClient" + path: "AppSyncRealTimeClient", + exclude: ["Info.plist"] ), .testTarget( name: "AppSyncRealTimeClientTests", dependencies: ["AppSyncRealTimeClient"], - path: "AppSyncRealTimeClientTests" + path: "AppSyncRealTimeClientTests", + exclude: ["Info.plist"] ) ] )