From 7d6215ccc2236e5f6ff9d2fb10c62f5fdad6cfe2 Mon Sep 17 00:00:00 2001 From: alexey1312 Date: Sun, 18 Jan 2026 17:54:08 +0500 Subject: [PATCH] Add PrivacyInfo.xcprivacy as a resource to fix SPM warning The privacy manifest was added in 0.15.3 but not declared in Package.swift, causing SPM to emit a warning about unhandled files. --- Package.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Package.swift b/Package.swift index 6a1ab986..18303b4b 100644 --- a/Package.swift +++ b/Package.swift @@ -16,6 +16,7 @@ let target: Target = .target( condition: .when(platforms: applePlatforms, traits: ["SQLCipher"])) ], exclude: ["Info.plist"], + resources: [.copy("PrivacyInfo.xcprivacy")], cSettings: [ .define("SQLITE_HAS_CODEC", .when(platforms: applePlatforms, traits: ["SQLCipher"])) ]