Skip to content

Commit

Permalink
Merge pull request #34 from infinum/feature/privacy-manifest
Browse files Browse the repository at this point in the history
Feature/privacy manifest
  • Loading branch information
nikolamajcen authored Apr 26, 2024
2 parents aef3c0e + fc16c34 commit 22fc13b
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ let package = Package(
"Classes/Collar/CollarTool.swift"
],
resources: [
.process("Assets")
.process("Assets"),
.copy("SupportingFiles/PrivacyInfo.xcprivacy")
]
),
.target(
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ let configuration = Sentinel.Configuration(
Sentinel.shared.setup(with: configuration)
```

## Privacy

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.


## Authors

* Vlaho Poluta, vlaho.poluta@infinum.com
Expand Down
4 changes: 2 additions & 2 deletions Sentinel.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'Sentinel'
s.version = '1.2.0'
s.version = '1.2.1'
s.summary = 'Developer\'s toolbox for debugging applications'

s.description = <<-DESC
Expand All @@ -26,7 +26,7 @@ Pod::Spec.new do |s|
s.swift_version = '5.0'
s.ios.deployment_target = '11.0'
s.resource_bundles = {
'Sentinel' => ['Sentinel/Assets/**/*'],
'Sentinel' => ['Sentinel/Assets/**/*', 'Sentinel/SupportingFiles/PrivacyInfo.xcprivacy'],
}
s.resources = 'Sentinel/Assets/**/*.{pdf}'
s.default_subspec = 'Default'
Expand Down
27 changes: 27 additions & 0 deletions Sentinel/SupportingFiles/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?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>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>35F9.1</string>
</array>
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
</array>
</dict>
</plist>

0 comments on commit 22fc13b

Please sign in to comment.