-
Notifications
You must be signed in to change notification settings - Fork 538
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding Apple Privacy Manifest #550
base: stable
Are you sure you want to change the base?
Conversation
…em call usage to align with Apple's privacy requirements.
Seeing the same issue with Apple warning against this for NSPrivacyAccessedAPICategoryFileTimestamp, can we get some movement on a library update including the Privacy Manifest please? |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>NSPrivacyAccessedAPITypes</key> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will also need to include the other required keys, even with empty values
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
@@ -12,5 +12,6 @@ Pod::Spec.new do |s| | |||
s.source = { :git => "https://github.com/httpswift/swifter.git", :tag => "1.5.0" } | |||
s.source_files = 'Xcode/Sources/*.{swift}' | |||
s.swift_version = '5.0' | |||
s.resource_bundles = {'Swifter' => ['Xcode/Resources/PrivacyInfo.xcprivacy']} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we add spaces after {
and before }
for better consistency? For example:
{ 'Swifter' => ['Xcode/Resources/PrivacyInfo.xcprivacy'] }
Added privacy manifest for compliance.
Includes details for Stat system call usage to align with Apple's privacy requirement