Ver Fonte

Remove configuration references.

Peter Andrews há 3 anos atrás
pai
commit
7ac0d3d9be

+ 0 - 2
Samples/Swift/DaysUntilBirthday/Shared/Services/GoogleSignInAuthenticator.swift

@@ -39,7 +39,6 @@ final class GoogleSignInAuthenticator: ObservableObject {
   /// - throws: Any error that may arise during the sign in process.
   /// - throws: Any error that may arise during the sign in process.
   func signIn(with rootViewController: UIViewController) async throws -> GIDGoogleUser {
   func signIn(with rootViewController: UIViewController) async throws -> GIDGoogleUser {
     return try await GIDSignIn.sharedInstance.signIn(
     return try await GIDSignIn.sharedInstance.signIn(
-      with: configuration,
       presenting: rootViewController
       presenting: rootViewController
     )
     )
   }
   }
@@ -52,7 +51,6 @@ final class GoogleSignInAuthenticator: ObservableObject {
   /// - throws: Any error that may arise during the sign in process.
   /// - throws: Any error that may arise during the sign in process.
   func signIn(with window: NSWindow) async throws -> GIDGoogleUser {
   func signIn(with window: NSWindow) async throws -> GIDGoogleUser {
     return try await GIDSignIn.sharedInstance.signIn(
     return try await GIDSignIn.sharedInstance.signIn(
-      with: configuration,
       presenting: window
       presenting: window
     )
     )
   }
   }