Skip to content

Commit

Permalink
Added privacy manifest info to PrivacyInfo files (#320)
Browse files Browse the repository at this point in the history
* Added privacy manifest info to PrivacyInfo file.

* Added original comments.

* Deleted Dev team from project file and added AskForAppLaunch back in after it was removed by mistake.

* Added privacy info to AppStoreListing.md doc file.

* remove development team

* reformat doc

---------

Co-authored-by: Mikaela Caron <mikaelacaron@gmail.com>
  • Loading branch information
AimeeT8 and mikaelacaron authored Oct 11, 2024
1 parent a31ee3b commit 96e2ad9
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Basic-Car-Maintenance/Documentation.docc/AppStoreListing.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,16 @@ Enter the following metadata on the version information page, which appears unde
You have 100 characters of keyword space, which get combined with the Name and Subtitle fields discussed above when a user searches the App Store. Ariel Michaeli of Appfigures recently advised to put the more important keywords closer to the start of this field. Separate keywords with commas; omit spaces.

Suggested: `car,van,electric,bike,care,repair,manage,easy,simple,oil,change,tire,rotation,record,fuel,gas,charge`

#### Privacy Info
The `PrivacyInfo.xcprivacy` file was created with https://www.privacymanifest.dev/

Checked APIs:
* User Defaults APIs with the usage reason CA92.1
* Collected Data Types:
* Name - linked to identity and app functionality
* Email Address - linked to identity and app functionality
* Phone number - linked to identity and app functionality
* Photos or videos - linked to identity
* User ID - linked to identity and app functionality

75 changes: 74 additions & 1 deletion Basic-Car-Maintenance/Shared/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,78 @@
Copyright (c) 2024 Icy App Studio LLC. All rights reserved.
-->
<plist version="1.0">
<dict/>
<dict>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
</array>
<key>NSPrivacyCollectedDataTypes</key>
<array>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeName</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false />
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>
NSPrivacyCollectedDataTypePurposeAppFunctionality
</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeEmailAddress</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false />
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>
NSPrivacyCollectedDataTypePurposeAppFunctionality
</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypePhoneNumber</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false />
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>
NSPrivacyCollectedDataTypePurposeAppFunctionality
</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypePhotosorVideos</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false />
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeUserID</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false />
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>
NSPrivacyCollectedDataTypePurposeAppFunctionality
</string>
</array>
</dict>
</array>

</dict>
</plist>

0 comments on commit 96e2ad9

Please sign in to comment.