Apple 隐私清单
Understand the privacy manifest requirements to publish applications on Apple App Store.
阅读时间1 分钟最后更新于 12 天前
要在 App Store 中发布适用于 iOS、iPadOS、tvOS 和 visionOS 平台的应用程序,您必须根据 Apple 隐私政策在应用程序中包含隐私清单文件。
PrivacyInfo.xcprivacy 清单文件概述了所需的信息,确保透明度符合用户隐私惯例。此文件列出了由 Unity 应用程序、第三方 SDK、包和插件收集的数据类型,以及使用某些需要声明原因的 API(Apple 文档)类别的原因。Apple 还要求将某些域声明为追踪(Apple 文档);除非用户同意,否则这些域可能会被屏蔽。
从 3.2.0 版开始提供 Cloud Save 的隐私清单。
PrivacyInfo.xcprivacy
以下代码示例包含 Cloud Save 的 PrivacyInfo.xcprivacy 清单。此文件也可在 SDK 中找到。要确定此 SDK 收集的数据及其收集目的,请参考以下键:NSPrivacyCollectedDataTypeNSPrivacyCollectedDataTypePurposes
<?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> <dict> <key>NSPrivacyCollectedDataType</key> <string>NSPrivacyCollectedDataTypeUserID</string> <key>NSPrivacyCollectedDataTypeLinked</key> <true/> <key>NSPrivacyCollectedDataTypeTracking</key> <false/> <key>NSPrivacyCollectedDataTypePurposes</key> <array> <string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string> <string>NSPrivacyCollectedDataTypePurposeAnalytics</string> </array> </dict> <dict> <key>NSPrivacyCollectedDataType</key> <string>NSPrivacyCollectedDataTypeCoarseLocation</string> <key>NSPrivacyCollectedDataTypeLinked</key> <true/> <key>NSPrivacyCollectedDataTypeTracking</key> <false/> <key>NSPrivacyCollectedDataTypePurposes</key> <array> <string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string> </array> </dict> </array></dict></plist>