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 21, 2024
1 parent d3484a0 commit eb47814
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,19 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "CombineExtensions",
dependencies: []),
dependencies: [],
resources: [.copy("../PrivacyInfo.xcprivacy")]
),
.target(
name: "SwiftUIExtensions",
dependencies: []),
dependencies: [],
resources: [.copy("../PrivacyInfo.xcprivacy")]
),
.target(
name: "FoundationExtensions",
dependencies: []),
dependencies: [],
resources: [.copy("../PrivacyInfo.xcprivacy")]
),

.testTarget(
name: "CombineExtensionsTests",
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 eb47814

Please sign in to comment.