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

Privacy manifest file for iOS is missing #6

Closed
Jjagg opened this issue Apr 24, 2024 · 2 comments · Fixed by #7
Closed

Privacy manifest file for iOS is missing #6

Jjagg opened this issue Apr 24, 2024 · 2 comments · Fixed by #7

Comments

@Jjagg
Copy link
Contributor

Jjagg commented Apr 24, 2024

Hi!

Please consider adding a privacy manifest to your library. This helps developers reflect data collection practices in our own manifests. All iOS packages should include a privacy manifest.

Apple documentation.

First-party example: flutter/packages#5846

There's nothing you need to put in there for this package, so you can use an 'empty' manifest:

<?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>NSPrivacyTrackingDomains</key>
	<array/>
	<key>NSPrivacyAccessedAPITypes</key>
	<array/>
	<key>NSPrivacyCollectedDataTypes</key>
	<array/>
	<key>NSPrivacyTracking</key>
	<false/>
</dict>
</plist>
@tpucci
Copy link
Owner

tpucci commented Apr 24, 2024

Will do ! 👍 Thanks @Jjagg

@Jjagg Jjagg mentioned this issue Apr 24, 2024
7 tasks
@tpucci tpucci closed this as completed in #7 Apr 24, 2024
@tpucci
Copy link
Owner

tpucci commented Apr 24, 2024

Available in 1.0.4 🚀

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