aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbenedom <31181527+benedom@users.noreply.github.com>2024-04-22 09:24:40 +0200
committerbenedom <31181527+benedom@users.noreply.github.com>2024-04-22 09:24:40 +0200
commitedcad92cad74b7dddbad3edf3a5f6709884f2956 (patch)
treed8791550c1e4cd2b82dd3d7f7dc951776277a0a6
parent5e4554272f1262120a643efb39ccdb890ae592fe (diff)
Add PrivacyInfo file
-rw-r--r--Package.swift5
-rw-r--r--Sources/PrivacyInfo.xcprivacy14
2 files changed, 18 insertions, 1 deletions
diff --git a/Package.swift b/Package.swift
index 546b8e4..d233735 100644
--- a/Package.swift
+++ b/Package.swift
@@ -17,7 +17,10 @@ let package = Package(
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
- name: "SwiftyCrop"),
+ name: "SwiftyCrop",
+ path: "Sources",
+ resources: [.copy("PrivacyInfo.xcprivacy")]
+ ),
.testTarget(
name: "SwiftyCropTests",
dependencies: ["SwiftyCrop"])
diff --git a/Sources/PrivacyInfo.xcprivacy b/Sources/PrivacyInfo.xcprivacy
new file mode 100644
index 0000000..e540750
--- /dev/null
+++ b/Sources/PrivacyInfo.xcprivacy
@@ -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>NSPrivacyAccessedAPITypes</key>
+ <array/>
+ <key>NSPrivacyCollectedDataTypes</key>
+ <array/>
+ <key>NSPrivacyTrackingDomains</key>
+ <array/>
+</dict>
+</plist>