From f1065efb2a1f1daff2ad4fca3a3c43ab30eebef5 Mon Sep 17 00:00:00 2001 From: Zandor Smith Date: Tue, 3 Mar 2026 19:43:26 +0100 Subject: [PATCH] Fix SPM manifest by removing trailing comma in function arguments Swift 6.0 (Xcode 16.2) does not support trailing commas in function argument lists. This breaks package resolution in SPM. The trailing comma after the resources parameter is removed to resolve the "Invalid manifest" error. Co-Authored-By: Claude Opus 4.6 --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index e796c1c..1ae416b 100644 --- a/Package.swift +++ b/Package.swift @@ -34,7 +34,7 @@ let package = Package( dependencies: [], path: "Source", exclude: ["Info.plist", "Device.swift.gyb"], - resources: [.process("PrivacyInfo.xcprivacy")], + resources: [.process("PrivacyInfo.xcprivacy")] ), .testTarget( name: "DeviceKitTests",