Datenschutzmanifest und iOS-URL-Handler
Einen Vorschlag zur Einrichtung mit den Installationsanweisungen und der vollständigen Markdown-Dokumentation für diesen Plugin kopieren.
Datenschutzmanifest für App-Entwickler
Abschnitt mit dem Titel “Datenschutzmanifest für App-Entwickler”Wenn Sie Google, Facebook oder Apple-Login verwenden, erklären Sie die von diesen SDKs gesammelten Daten in Ihrer App-Datei. Fügen Sie die Datei in Ihrer App bei PrivacyInfo.xcprivacy Fügen Sie diese Datei nicht in das Plugin-Paket ein. Anpassen Sie die Datentypen an Ihre App-Verwendung und die Anleitung zum __CAPGO_KEEP_0__-Dokumentation an. ios/App/PrivacyInfo.xcprivacy.
Do not add this file to the plugin package. Adjust the data types to match your app’s usage and the provider SDK documentation.
Abschnitt mit dem Titel “Beispiel für Google-Sign-In”
Zwischenablage kopieren{ "NSPrivacyCollectedDataTypes": [ { "NSPrivacyCollectedDataType": "EmailAddress", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false }, { "NSPrivacyCollectedDataType": "Name", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false }, { "NSPrivacyCollectedDataType": "UserID", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false } ]}Abschnitt mit dem Titel “Beispiel für Facebook-Login”
Zwischenablage kopieren{ "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 } ]}Apple Sign-In-Beispiel
Abschnitt: "Apple Sign-In-Beispiel"{ "NSPrivacyCollectedDataTypes": [ { "NSPrivacyCollectedDataType": "EmailAddress", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false }, { "NSPrivacyCollectedDataType": "Name", "NSPrivacyCollectedDataTypeLinked": true, "NSPrivacyCollectedDataTypeTracking": false } ]}Überprüfen Dokumentation von Apples Datenschutzmanifest für alle erlaubten Schlüssel und Werte.
Combiniere Facebook- und Google-URL-Handler
Abschnitt: "Combiniere Facebook- und Google-URL-Handler"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 importiert die von Ihrer App verwendeten SDKs:
import Capacitorimport FBSDKCoreKitimport GoogleSignInimport UIKit