Skip to content

Commit

Permalink
Merge pull request #3 from KantaSwift/add-privacy-manifest
Browse files Browse the repository at this point in the history
Add privacy manifest
  • Loading branch information
Ryu0118 authored Mar 27, 2024
2 parents 7aa2cdc + 3cdba2e commit c9e269b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "Pool",
dependencies: []
resources: [.copy("PrivacyInfo.xcprivacy")]
),
.testTarget(
name: "PoolTests",
Expand Down
23 changes: 23 additions & 0 deletions Sources/Pool/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>E174.1</string>
</array>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryDiskSpace</string>
</dict>
</array>
</dict>
</plist>

0 comments on commit c9e269b

Please sign in to comment.