Skip to content

Commit

Permalink
Add missing default dictionary field in privacy manifest
Browse files Browse the repository at this point in the history
Summary:
I was getting some feedback from one of my libraries that the privacy manifest was reporting validation errors, and when I checked the privacy manifest here, it was similarly incorrectly structured.

This diff fixes the base default values of the privacy manifest, and then verified against Apple's validator to make sure the required fields are correct.

Reviewed By: fabiomassimo

Differential Revision: D56294818

fbshipit-source-id: 656917ec4c3452ca5ebaa60dd44efe303f7e0396
  • Loading branch information
TimOliver authored and facebook-github-bot committed Apr 19, 2024
1 parent bfbf779 commit 86d31b1
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions Source/PrivacyInfo.xcprivacy
Expand Up @@ -7,14 +7,16 @@
LICENSE file in the root directory of this source tree.
-->
<plist version="1.0">
<dict>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
</dict>
<dict>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict/>
</array>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
</dict>
</plist>

0 comments on commit 86d31b1

Please sign in to comment.