Skip to content

Commit 2834168

Browse files
authored
Add privacy manifest file to make clear no data being tracked (#31)
1 parent 7e37b3f commit 2834168

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

Package.resolved

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ let package = Package(
2020
condition: .when(platforms: [.android, .linux, .openbsd, .wasi, .windows])
2121
),
2222
],
23-
resources: [.process("Resources/Localizable.xcstrings")]
23+
resources: [
24+
.process("Resources/Localizable.xcstrings"),
25+
.process("Resources/PrivacyInfo.xcprivacy"),
26+
]
2427
),
2528
.testTarget(name: "ErrorKitTests", dependencies: ["ErrorKit"]),
2629
]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict/>
5+
</plist>

0 commit comments

Comments
 (0)