Skip to content

Commit 94951a4

Browse files
committed
Adding Privacy Manifest
1 parent b56ee10 commit 94951a4

File tree

6 files changed

+38
-4
lines changed

6 files changed

+38
-4
lines changed

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.0] - 2024-05-01
6+
7+
### Changed
8+
9+
- Added privacy manifest in resources bundle
10+
511
## [0.1.2] - 2023-04-09
612

713
### Changed

Package.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ let package = Package(
1616
// Targets are the basic building blocks of a package, defining a module or a test suite.
1717
// Targets can depend on other targets in this package and products from dependencies.
1818
.target(
19-
name: "OSLogClient"),
19+
name: "OSLogClient",
20+
resources: [
21+
.copy("Resources/PrivacyInfo.xcprivacy")
22+
]
23+
),
2024
.testTarget(
2125
name: "OSLogClientTests",
2226
dependencies: ["OSLogClient"]

[email protected]

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ let package = Package(
1616
// Targets are the basic building blocks of a package, defining a module or a test suite.
1717
// Targets can depend on other targets in this package and products from dependencies.
1818
.target(
19-
name: "OSLogClient"),
19+
name: "OSLogClient",
20+
resources: [
21+
.copy("Resources/PrivacyInfo.xcprivacy")
22+
]
23+
),
2024
.testTarget(
2125
name: "OSLogClientTests",
2226
dependencies: ["OSLogClient"]

[email protected]

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ let package = Package(
1616
// Targets are the basic building blocks of a package, defining a module or a test suite.
1717
// Targets can depend on other targets in this package and products from dependencies.
1818
.target(
19-
name: "OSLogClient"),
19+
name: "OSLogClient",
20+
resources: [
21+
.copy("Resources/PrivacyInfo.xcprivacy")
22+
]
23+
),
2024
.testTarget(
2125
name: "OSLogClientTests",
2226
dependencies: ["OSLogClient"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Currently, OSLogClient supports Swift Package Manager (SPM).
164164
To add OSLogClient to your project, add the following line to your dependencies in your Package.swift file:
165165

166166
```swift
167-
.package(url: "https://github.com/CheekyGhost-Labs/OSLogClient", from: "0.1.2")
167+
.package(url: "https://github.com/CheekyGhost-Labs/OSLogClient", from: "0.2.0")
168168
```
169169

170170
Then, add OSLogClient as a dependency for your target:
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
<key>NSPrivacyTracking</key>
6+
<false/>
7+
<key>NSPrivacyCollectedDataTypes</key>
8+
<array/>
9+
<key>NSPrivacyTrackingDomains</key>
10+
<array/>
11+
<key>NSPrivacyAccessedAPITypes</key>
12+
<array>
13+
<dict/>
14+
</array>
15+
</dict>
16+
</plist>

0 commit comments

Comments
 (0)