Files
org-social-ios/App/PrivacyInfo.xcprivacy
andros 7f137d4506 Prep for App Store submission
- PrivacyInfo.xcprivacy declares UserDefaults access with reason CA92.1
  and an empty tracking/data-collection profile. Required by Apple
  since May 2024 for all new app submissions.
- ITSAppUsesNonExemptEncryption=false skips the export-compliance prompt
  on every App Store Connect upload. The app only uses standard HTTPS
  and Basic Auth, which qualifies as exempt.
- Surface poll-vote upload errors through the existing alert path
  instead of swallowing them silently.
2026-04-21 11:34:31 +02:00

24 lines
694 B
XML

<?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>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
</array>
</dict>
</plist>