-
Notifications
You must be signed in to change notification settings - Fork 122
Android Auth Google I/O rework #1245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android Auth Google I/O rework #1245
Conversation
@@ -386,7 +386,7 @@ class User : public UserInfoInterface { | |||
/// platforms. On other platforms this method will return a Future with a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 Documentation issue: [10 lines up] warning: unable to resolve reference to 'LinkWithProvider(FederatedAuthProvider*)' for \ref command
@@ -386,7 +386,7 @@ | |||
/// platforms. On other platforms this method will return a Future with a | |||
/// preset error code: kAuthErrorUnimplemented. | |||
FIREBASE_DEPRECATED Future<SignInResult> LinkWithProvider_DEPRECATED( | |||
FederatedAuthProvider* provider) const; | |||
FederatedAuthProvider* provider); | |||
|
|||
/// @deprecated This is a deprecated method. Please use @ref Unlink(const |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 Documentation issue: warning: unable to resolve reference to 'Unlink' for \ref command
@@ -386,7 +386,7 @@ | |||
/// platforms. On other platforms this method will return a Future with a | |||
/// preset error code: kAuthErrorUnimplemented. | |||
FIREBASE_DEPRECATED Future<SignInResult> LinkWithProvider_DEPRECATED( | |||
FederatedAuthProvider* provider) const; | |||
FederatedAuthProvider* provider); | |||
|
|||
/// @deprecated This is a deprecated method. Please use @ref Unlink(const | |||
/// char*) instead. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 Documentation issue: [8 lines down] warning: unable to resolve reference to 'Unlink' for \ref command
❌ Integration test FAILEDRequested by @DellaBitta on commit 0fd6f7b
Add flaky tests to go/fpl-cpp-flake-tracker |
Description
Removes the need for User objects to be stored in AuthData, unlocking ability for there to be more than one User object at a time.
Continues to store a User in Auth, though, to maintain the implementation of the newly deprecated methods which return a User*.
Added a RetainUser integration test.
Testing
Locally tested on an iOS and Android device.
Type of Change
Place an
x
the applicable box: