Zum Inhalt springen

Datenschutzmanifest und iOS-URL-Handler

GitHub

Wenn Sie Google, Facebook oder Apple-Login verwenden, deklarieren Sie die von diesen SDKs gesammelten Daten in Ihrer App’s PrivacyInfo.xcprivacy Datei. Fügen Sie die Datei in Ihrer App bei ios/App/PrivacyInfo.xcprivacy.

Fügen Sie diese Datei nicht in das Plugin-Paket ein. Passen Sie die Datentypen an Ihre App’s Verwendung und die SDK-Dokumentation an.

{
"NSPrivacyCollectedDataTypes": [
{ "NSPrivacyCollectedDataType": "EmailAddress", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false },
{ "NSPrivacyCollectedDataType": "Name", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false },
{ "NSPrivacyCollectedDataType": "UserID", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false }
]
}
{
"NSPrivacyCollectedDataTypes": [
{ "NSPrivacyCollectedDataType": "EmailAddress", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false },
{ "NSPrivacyCollectedDataType": "Name", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false },
{ "NSPrivacyCollectedDataType": "UserID", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false },
{ "NSPrivacyCollectedDataType": "FriendsList", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false }
]
}
{
"NSPrivacyCollectedDataTypes": [
{ "NSPrivacyCollectedDataType": "EmailAddress", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false },
{ "NSPrivacyCollectedDataType": "Name", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false }
]
}

Überprüfen Dokumentation von Apples Privacy Manifest für alle zulässigen Schlüssel und Werte.

Wenn ein iOS-App sowohl Facebook als auch Google-Login verwendet, leite die Callback-URL an beide SDKs weiter, bevor du sie an Capacitor zurückgibst.

In ios/App/App/AppDelegate.swift:

func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
// Return true if the URL was handled by either Facebook or Google authentication.
if FBSDKCoreKit.ApplicationDelegate.shared.application(
app,
open: url,
sourceApplication: options[UIApplication.OpenURLOptionsKey.sourceApplication] as? String,
annotation: options[UIApplication.OpenURLOptionsKey.annotation]
) || GIDSignIn.sharedInstance.handle(url) {
return true
}
return ApplicationDelegateProxy.shared.application(app, open: url, options: options)
}

Stelle sicher AppDelegate.swift Importiere die von deiner App verwendeten SDKs:

import Capacitor
import FBSDKCoreKit
import GoogleSignIn
import UIKit
Zugehörige Dokumentation