Skip to content

Commit b7ca511

Browse files
sichanyooSichan Yoo
andauthored
chore: Add privacy manifest & Bump crt to v0.30.0 (#697)
* Add privacy manifest for future-proofing. Add manifest under resources for ClientRuntime target. * Move privacy manifest to correct spot. * Handle privacy manifest path for multiple platforms. * Simplify it back to origianl approach. * Version bump CRT to 0.30.0. --------- Co-authored-by: Sichan Yoo <[email protected]>
1 parent 7be2bd8 commit b7ca511

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let package = Package(
3434
.library(name: "SmithyTestUtil", targets: ["SmithyTestUtil"]),
3535
],
3636
dependencies: [
37-
.package(url: "https://github.com/awslabs/aws-crt-swift.git", exact: "0.29.0"),
37+
.package(url: "https://github.com/awslabs/aws-crt-swift.git", exact: "0.30.0"),
3838
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
3939
],
4040
targets: [
@@ -44,6 +44,9 @@ let package = Package(
4444
"SmithyXML",
4545
.product(name: "AwsCommonRuntimeKit", package: "aws-crt-swift"),
4646
.product(name: "Logging", package: "swift-log"),
47+
],
48+
resources: [
49+
.copy("PrivacyInfo.xcprivacy")
4750
]
4851
),
4952
.target(name: "SmithyReadWrite"),
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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>NSPrivacyTrackingDomains</key>
8+
<array/>
9+
<key>NSPrivacyCollectedDataTypes</key>
10+
<array/>
11+
<key>NSPrivacyAccessedAPITypes</key>
12+
<array/>
13+
</dict>
14+
</plist>

0 commit comments

Comments
 (0)