Skip to content
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

Add privacy manifest #745

Closed
niji-mathieu-viel opened this issue Feb 13, 2024 · 2 comments · Fixed by #746
Closed

Add privacy manifest #745

niji-mathieu-viel opened this issue Feb 13, 2024 · 2 comments · Fixed by #746

Comments

@niji-mathieu-viel
Copy link

Third-party SDKs should include a privacy manifest by Spring according to Apple new requirements :
https://developer.apple.com/support/third-party-SDK-requirements/
https://developer.apple.com/documentation/bundleresources/privacy_manifest_files?language=objc

Would it be possible to add it to PhoneNumberKit?

Thanks.

@niji-mathieu-viel
Copy link
Author

niji-mathieu-viel commented Feb 14, 2024

From what I understand, as the framework is not collecting any personal data, an empty manifest + podspec / package.swift setup should do the trick (?)

@bguidolim any opinion on this? ;)

<?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>
</plist>

@bguidolim
Copy link
Collaborator

It seems that's the way to go.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants