Skip to content

Commit 5b6a33c

Browse files
committed
Added PrivacyInfo.xcprivacy file
1 parent d52dbe4 commit 5b6a33c

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

InAppSettingsKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'InAppSettingsKit'
3-
s.version = '3.7'
3+
s.version = '3.7.1'
44
s.summary = 'This iPhone framework allows settings to be in-app in addition to being in the Settings app.'
55

66
s.description = <<-DESC

Package.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@ let package = Package(
1313
],
1414
targets: [
1515
.target(
16-
name: "InAppSettingsKit"
16+
name: "InAppSettingsKit",
17+
exclude: [
18+
"README.md",
19+
"IASK.gif",
20+
"InAppSettingsKit.podspec",
21+
"RELEASE_NOTES.md",
22+
],
23+
resources: [.copy("PrivacyInfo.xcprivacy")]
1724
),
1825
.testTarget(
1926
name: "InAppSettingsKitTests",
@@ -24,6 +31,5 @@ let package = Package(
2431
.copy("Settings.bundle")
2532
]
2633
),
27-
2834
]
2935
)
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
<key>NSPrivacyAccessedAPIType</key>
15+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
16+
<key>NSPrivacyAccessedAPITypeReasons</key>
17+
<array>
18+
<string>C56D.1</string>
19+
</array>
20+
</dict>
21+
</array>
22+
</dict>
23+
</plist>

0 commit comments

Comments
 (0)