Skip to content

Commit 22fc13b

Browse files
authored
Merge pull request #34 from infinum/feature/privacy-manifest
Feature/privacy manifest
2 parents aef3c0e + fc16c34 commit 22fc13b

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

Package.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ let package = Package(
3636
"Classes/Collar/CollarTool.swift"
3737
],
3838
resources: [
39-
.process("Assets")
39+
.process("Assets"),
40+
.copy("SupportingFiles/PrivacyInfo.xcprivacy")
4041
]
4142
),
4243
.target(

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,11 @@ let configuration = Sentinel.Configuration(
109109
Sentinel.shared.setup(with: configuration)
110110
```
111111

112+
## Privacy
113+
114+
Sentinel does not collect any user data. We have provided a [privacy manifest](https://github.com/infinum/ios-sentinel/blob/master/Sentinel/SupportingFiles/PrivacyInfo.xcprivacy) file that can be included in your app.
115+
116+
112117
## Authors
113118

114119
* Vlaho Poluta, [email protected]

Sentinel.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'Sentinel'
11-
s.version = '1.2.0'
11+
s.version = '1.2.1'
1212
s.summary = 'Developer\'s toolbox for debugging applications'
1313

1414
s.description = <<-DESC
@@ -26,7 +26,7 @@ Pod::Spec.new do |s|
2626
s.swift_version = '5.0'
2727
s.ios.deployment_target = '11.0'
2828
s.resource_bundles = {
29-
'Sentinel' => ['Sentinel/Assets/**/*'],
29+
'Sentinel' => ['Sentinel/Assets/**/*', 'Sentinel/SupportingFiles/PrivacyInfo.xcprivacy'],
3030
}
3131
s.resources = 'Sentinel/Assets/**/*.{pdf}'
3232
s.default_subspec = 'Default'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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>NSPrivacyCollectedDataTypes</key>
6+
<array/>
7+
<key>NSPrivacyAccessedAPITypes</key>
8+
<array>
9+
<dict>
10+
<key>NSPrivacyAccessedAPIType</key>
11+
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
12+
<key>NSPrivacyAccessedAPITypeReasons</key>
13+
<array>
14+
<string>35F9.1</string>
15+
</array>
16+
</dict>
17+
<dict>
18+
<key>NSPrivacyAccessedAPIType</key>
19+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
20+
<key>NSPrivacyAccessedAPITypeReasons</key>
21+
<array>
22+
<string>CA92.1</string>
23+
</array>
24+
</dict>
25+
</array>
26+
</dict>
27+
</plist>

0 commit comments

Comments
 (0)