Skip to content

Commit

Permalink
ADD privacy manifest
Browse files Browse the repository at this point in the history
Resolves #15
  • Loading branch information
mflknr committed Feb 22, 2024
1 parent b7c4b3f commit d0a273c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ let package = Package(
),
],
targets: [
.target(name: "VersionCompare"),
.target(
name: "VersionCompare",
resources: [
.copy("Resources/PrivacyInfo.xcprivacy")
]
),
.testTarget(
name: "VersionCompareTests",
dependencies: [
Expand Down
14 changes: 14 additions & 0 deletions Sources/VersionCompare/Resources/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>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
</dict>
</plist>

0 comments on commit d0a273c

Please sign in to comment.