Skip to content

Commit

Permalink
Added empty privacy manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
edonv committed Mar 22, 2024
1 parent a777b2b commit 10c9a2f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "SwiftUIColorConstants",
dependencies: []),
dependencies: [],
resources: [.copy("../PrivacyInfo.xcprivacy")]
),
.testTarget(
name: "SwiftUIColorConstantsTests",
dependencies: ["SwiftUIColorConstants"]),
Expand Down
14 changes: 14 additions & 0 deletions Sources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
</dict>
</plist>

0 comments on commit 10c9a2f

Please sign in to comment.