Apple 隐私清单
要将应用程序发布到 App Store 上的 iOS、iPadOS、tvOS 和 visionOS 平台,您必须按照Apple 的隐私政策,在您的应用程序中包含一个隐私清单文件。
Note: For information on creating a privacy manifest file to include in your application, refer to Apple’s privacy manifest policy requirements.
该PrivacyInfo.xcprivacy 清单文件概述了所需信息,确保按照用户隐私惯例进行透明。该文件列出了您的 Unity 应用程序、第三方 SDK、包和插件收集的数据类型,以及使用某些必需的理由 API(Apple 文档)类别的原因。Apple 还要求将某些域声明为跟踪(Apple 文档);这些域可能会被阻止,除非用户提供同意。
重要:如果您或第三方 SDK 的隐私清单未声明使用必需的理由 API,App Store 可能会拒绝您的应用程序。详细了解 Apple 文档中的必需的理由 API。
Note:
- Lobby is dependent on Authentication. Refer to its privacy manifest file for applicable data practices.
- Lobby is dependent on Services Core. Refer to its privacy manifest file for applicable data practices.
- Lobby is dependent on the Wire SDK (for internal use only). The data collected by the Wire SDK is included in the Lobby privacy manifest.
- Lobby is dependent on the Vivox SDK. Refer to its privacy manifest file for applicable data practices.
大厅的隐私清单从 1.2.1 版本开始提供。
PrivacyInfo.xcprivacy
以下代码示例显示了大厅的 PrivacyInfo.xcprivacy
清单文件的内容。此文件也可在大厅 SDK 版本 1.2.1 中找到。
<?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>NSPrivacyCollectedDataTypeCoarseLocation</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<true/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
</array>
</dict>
</plist>