Skip to content

Commit

Permalink
add privacy manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdeem committed Sep 9, 2024
1 parent 4a8c7d3 commit 397a86e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ let package = Package(
],
targets: [
.target(
name: "EnvironmentDecoder"),
name: "EnvironmentDecoder",
resources: [.process("PrivacyInfo.xcprivacy")]),
.testTarget(
name: "EnvironmentDecoderTests",
dependencies: ["EnvironmentDecoder"]),
Expand Down
3 changes: 2 additions & 1 deletion [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ let package = Package(
],
targets: [
.target(
name: "EnvironmentDecoder"),
name: "EnvironmentDecoder",
resources: [.process("PrivacyInfo.xcprivacy")]),
])
14 changes: 14 additions & 0 deletions Sources/EnvironmentDecoder/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>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
</dict>
</plist>

0 comments on commit 397a86e

Please sign in to comment.