Skip to content

Commit

Permalink
Added PrivacyInfo.xcprivacy file
Browse files Browse the repository at this point in the history
  • Loading branch information
futuretap committed May 3, 2024
1 parent d52dbe4 commit 5b6a33c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
2 changes: 1 addition & 1 deletion InAppSettingsKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'InAppSettingsKit'
s.version = '3.7'
s.version = '3.7.1'
s.summary = 'This iPhone framework allows settings to be in-app in addition to being in the Settings app.'

s.description = <<-DESC
Expand Down
10 changes: 8 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ let package = Package(
],
targets: [
.target(
name: "InAppSettingsKit"
name: "InAppSettingsKit",
exclude: [
"README.md",
"IASK.gif",
"InAppSettingsKit.podspec",
"RELEASE_NOTES.md",
],
resources: [.copy("PrivacyInfo.xcprivacy")]
),
.testTarget(
name: "InAppSettingsKitTests",
Expand All @@ -24,6 +31,5 @@ let package = Package(
.copy("Settings.bundle")
]
),

]
)
23 changes: 23 additions & 0 deletions Sources/InAppSettingsKit/Resources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>C56D.1</string>
</array>
</dict>
</array>
</dict>
</plist>

0 comments on commit 5b6a33c

Please sign in to comment.