Apple のプライバシーマニフェスト
Include a privacy manifest in your iOS app to declare the personal data that Unity Authentication collects to conform with Apple's privacy policy.
読み終わるまでの所要時間 1 分最終更新 4日前
iOS、iPadOS、tvOS および visionOS プラットフォーム用のアプリケーションをアプリストアに公開するには、Apple のプライバシーポリシー に従って プライバシーマニフェストファイル をアプリケーションに加える必要があります。
PrivacyInfo.xcprivacy マニフェストファイルは、必要な情報の概略を示すことで、ユーザープライバシープラクティスに関する透明性を保証します。このファイルには、ご自身の Unity アプリケーション、サードパーティ製の SDK、パッケージ、プラグインが収集する データの種類 と、特定の 理由が求められる API (Apple ドキュメント) カテゴリを使用する理由をリストします。また、Apple は、特定のドメインが トラッキング (Apple ドキュメント) していると宣言することも要求しています。このようなドメインは、ユーザーの同意がない限りブロックされる場合があります。
ノート:
- Authentication は Services Core に依存します。該当するデータプラクティスについては、その プライバシーマニフェスト を参照してください。
- E メールアドレスは、Unity Player Accounts が使用されている場合にのみ収集されます。
- その他の連絡先情報は、以下を表します。
- Open ID Connect sub クレーム。
- これは、Open ID Connect ID プロバイダーが使用されている場合に、Unity Authentication によって収集されることがあります。
- ゲーム内ディスプレイ名。
- これは、Player Names 機能が使用されている場合に、Unity Authentication によって収集されることがあります。
- Open ID Connect sub クレーム。
- カスタマーサポートは、Unity Player Accounts が使用されている場合にのみ、収集されることがあります。
- Unity Player Accounts が使用されている場合は、その他の使用状況データが収集されることがあります。
PrivacyInfo.xcprivacy
以下のコードサンプルは、Authentication 用のPrivacyInfo.xcprivacyNSPrivacyCollectedDataTypeNSPrivacyCollectedDataTypePurposes
<?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>NSPrivacyCollectedDataTypeEmailAddress</string> <key>NSPrivacyCollectedDataTypeLinked</key> <true/> <key>NSPrivacyCollectedDataTypeTracking</key> <false/> <key>NSPrivacyCollectedDataTypePurposes</key> <array> <string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string> </array> </dict> <dict> <key>NSPrivacyCollectedDataType</key> <string>NSPrivacyCollectedDataTypeOtherUserContactInfo</string> <key>NSPrivacyCollectedDataTypeLinked</key> <true/> <key>NSPrivacyCollectedDataTypeTracking</key> <false/> <key>NSPrivacyCollectedDataTypePurposes</key> <array> <string>NSPrivacyCollectedDataTypePurposeAppFunctionality</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> <dict> <key>NSPrivacyCollectedDataType</key> <string>NSPrivacyCollectedDataTypeCustomerSupport</string> <key>NSPrivacyCollectedDataTypeLinked</key> <true/> <key>NSPrivacyCollectedDataTypeTracking</key> <false/> <key>NSPrivacyCollectedDataTypePurposes</key> <array> <string>NSPrivacyCollectedDataTypePurposeOther</string> </array> </dict> <dict> <key>NSPrivacyCollectedDataType</key> <string>NSPrivacyCollectedDataTypeUserID</string> <key>NSPrivacyCollectedDataTypeLinked</key> <true/> <key>NSPrivacyCollectedDataTypeTracking</key> <false/> <key>NSPrivacyCollectedDataTypePurposes</key> <array> <string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string> </array> </dict> <dict> <key>NSPrivacyCollectedDataType</key> <string>NSPrivacyCollectedDataTypeOtherUsageData</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>NSPrivacyCollectedDataTypeCrashData</string> <key>NSPrivacyCollectedDataTypeLinked</key> <false/> <key>NSPrivacyCollectedDataTypeTracking</key> <false/> <key>NSPrivacyCollectedDataTypePurposes</key> <array> <string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string> </array> </dict> </array> <key>NSPrivacyAccessedAPITypes</key> <array/></dict></plist>