Skip to content

Commit

Permalink
fix: Mark NSPrivacyCollectedDataTypeTracking as false in privacy mani…
Browse files Browse the repository at this point in the history
…fest (#366)

According to
https://developer.apple.com/app-store/user-privacy-and-data-use/

> Tracking refers to the act of linking user or device data collected
from your app with user or device data collected from other companies’
apps, websites, or offline properties for targeted advertising or
advertising measurement purposes.

The data we collect is not used for advertising.
  • Loading branch information
keelerm84 authored Apr 3, 2024
1 parent bb4be0f commit fac9030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LaunchDarkly/LaunchDarkly/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<key>NSPrivacyCollectedDataTypeLinked</key>
<true/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<true/>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeProductPersonalization</string>
Expand All @@ -28,7 +28,7 @@
<key>NSPrivacyCollectedDataTypeLinked</key>
<true/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<true/>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeProductPersonalization</string>
Expand Down

0 comments on commit fac9030

Please sign in to comment.