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 <noreply@anthropic.com>
This commit is contained in:
Zandor Smith
2026-03-03 19:43:26 +01:00
parent 56b997e8a6
commit f1065efb2a
+1 -1
View File
@@ -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",