tpucci / shake_gesture

0 dependencies Flutter plugin that detects shake gestures on Android and iOS (even on simulators).
MIT License
3 stars 4 forks source link

Privacy manifest file for iOS is missing #6

Closed Jjagg closed 4 months ago

Jjagg commented 4 months ago

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: https://github.com/flutter/packages/pull/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 commented 4 months ago

Will do ! 👍 Thanks @Jjagg

tpucci commented 4 months ago

Available in 1.0.4 🚀