Skip to content

Commit

Permalink
Chore/Privacy manifest master (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
borut-t authored Apr 19, 2024
2 parents c1f4299 + 980efc3 commit 95371ae
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ let package = Package(
targets: [
.target(
name: "PovioKitCore",
path: "Sources/Core"
path: "Sources/Core",
resources: [.copy("../../Resources/PrivacyInfo.xcprivacy")]
),
.target(
name: "PovioKitNetworking",
Expand All @@ -28,25 +29,29 @@ let package = Package(
"Alamofire",
"PovioKitPromise",
],
path: "Sources/Networking"
path: "Sources/Networking",
resources: [.copy("../../Resources/PrivacyInfo.xcprivacy")]
),
.target(
name: "PovioKitPromise",
dependencies: [],
path: "Sources/PromiseKit"
path: "Sources/PromiseKit",
resources: [.copy("../../Resources/PrivacyInfo.xcprivacy")]
),
.target(
name: "PovioKitUI",
dependencies: [
"PovioKitCore"
],
path: "Sources/UI"
path: "Sources/UI",
resources: [.copy("../../../Resources/PrivacyInfo.xcprivacy")]
),
.target(
name: "PovioKitAsync",
dependencies: [
],
path: "Sources/Async"
path: "Sources/Async",
resources: [.copy("../../../Resources/PrivacyInfo.xcprivacy")]
),
.testTarget(
name: "Tests",
Expand Down
14 changes: 14 additions & 0 deletions 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>NSPrivacyAccessedAPITypes</key>
<array/>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
</dict>
</plist>

0 comments on commit 95371ae

Please sign in to comment.