17
17
import android .content .Context ;
18
18
import android .content .Intent ;
19
19
import android .os .Bundle ;
20
+ import android .os .CancellationSignal ;
20
21
import android .os .Parcel ;
21
22
import android .os .Parcelable ;
22
23
import android .text .TextUtils ;
32
33
import com .firebase .ui .auth .util .data .PhoneNumberUtils ;
33
34
import com .firebase .ui .auth .util .data .ProviderAvailability ;
34
35
import com .firebase .ui .auth .util .data .ProviderUtils ;
36
+ import com .google .android .gms .auth .api .identity .Identity ;
35
37
import com .google .android .gms .auth .api .signin .GoogleSignIn ;
36
38
import com .google .android .gms .auth .api .signin .GoogleSignInAccount ;
37
39
import com .google .android .gms .auth .api .signin .GoogleSignInOptions ;
38
40
import com .google .android .gms .common .api .ApiException ;
39
41
import com .google .android .gms .common .api .CommonStatusCodes ;
40
42
import com .google .android .gms .common .api .Scope ;
41
43
import com .google .android .gms .tasks .Task ;
44
+ import com .google .android .gms .tasks .TaskCompletionSource ;
42
45
import com .google .android .gms .tasks .Tasks ;
43
46
import com .google .firebase .FirebaseApp ;
44
47
import com .google .firebase .auth .ActionCodeSettings ;
68
71
import java .util .Locale ;
69
72
import java .util .Map ;
70
73
import java .util .Set ;
74
+ import java .util .concurrent .Executor ;
75
+ import java .util .concurrent .Executors ;
71
76
72
77
import androidx .annotation .CallSuper ;
73
78
import androidx .annotation .DrawableRes ;
76
81
import androidx .annotation .RestrictTo ;
77
82
import androidx .annotation .StringDef ;
78
83
import androidx .annotation .StyleRes ;
84
+ import androidx .credentials .ClearCredentialStateRequest ;
85
+ import androidx .credentials .CredentialManagerCallback ;
86
+ import androidx .credentials .exceptions .ClearCredentialException ;
79
87
80
88
/**
81
89
* The entry point to the AuthUI authentication flow, and related utility methods. If your
@@ -280,8 +288,9 @@ public Task<Void> signOut(@NonNull Context context) {
280
288
if (!playServicesAvailable ) {
281
289
Log .w (TAG , "Google Play services not available during signOut" );
282
290
}
283
-
284
- return signOutIdps (context ).continueWith (task -> {
291
+ signOutIdps (context );
292
+ Executor singleThreadExecutor = Executors .newSingleThreadExecutor ();
293
+ return clearCredentialState (context , singleThreadExecutor ).continueWith (task -> {
285
294
task .getResult (); // Propagate exceptions if any.
286
295
mAuth .signOut ();
287
296
return null ;
@@ -303,9 +312,10 @@ public Task<Void> delete(@NonNull final Context context) {
303
312
String .valueOf (CommonStatusCodes .SIGN_IN_REQUIRED ),
304
313
"No currently signed in user." ));
305
314
}
306
-
307
- return signOutIdps (context ).continueWithTask (task -> {
308
- task .getResult (); // Propagate exception if there was one.
315
+ signOutIdps (context );
316
+ Executor singleThreadExecutor = Executors .newSingleThreadExecutor ();
317
+ return clearCredentialState (context , singleThreadExecutor ).continueWithTask (task -> {
318
+ task .getResult (); // Propagate exceptions if any.
309
319
return currentUser .delete ();
310
320
});
311
321
}
@@ -338,15 +348,43 @@ public int getEmulatorPort() {
338
348
return mEmulatorPort ;
339
349
}
340
350
341
- private Task < Void > signOutIdps (@ NonNull Context context ) {
351
+ private void signOutIdps (@ NonNull Context context ) {
342
352
if (ProviderAvailability .IS_FACEBOOK_AVAILABLE ) {
343
353
LoginManager .getInstance ().logOut ();
344
354
}
345
- if (GoogleApiUtils .isPlayServicesAvailable (context )) {
346
- return GoogleSignIn .getClient (context , GoogleSignInOptions .DEFAULT_SIGN_IN ).signOut ();
347
- } else {
348
- return Tasks .forResult ((Void ) null );
349
- }
355
+ }
356
+
357
+ /**
358
+ * A Task to clear the credential state in Credential Manager.
359
+ * @param context
360
+ * @param executor
361
+ * @return
362
+ */
363
+ private Task <Void > clearCredentialState (
364
+ @ NonNull Context context ,
365
+ @ NonNull Executor executor
366
+ ) {
367
+ TaskCompletionSource <Void > completionSource = new TaskCompletionSource <>();
368
+
369
+ ClearCredentialStateRequest clearRequest = new ClearCredentialStateRequest ();
370
+ GoogleApiUtils .getCredentialManager (context )
371
+ .clearCredentialStateAsync (
372
+ clearRequest ,
373
+ new CancellationSignal (),
374
+ executor ,
375
+ new CredentialManagerCallback <>() {
376
+ @ Override
377
+ public void onResult (Void unused ) {
378
+ completionSource .setResult (unused );
379
+ }
380
+
381
+ @ Override
382
+ public void onError (@ NonNull ClearCredentialException e ) {
383
+ completionSource .setException (e );
384
+ }
385
+ }
386
+ );
387
+ return completionSource .getTask ();
350
388
}
351
389
352
390
/**
0 commit comments