Skip to content

Commit

Permalink
Merge branch 'dev' into firestore-rules
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelacaron committed Oct 14, 2024
2 parents accead4 + 96e2ad9 commit 37f1be0
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 37f1be0

Please sign in to comment.