Files
rr3-apk/decompiled/sources/androidx/credentials/playservices/controllers/BeginSignIn/CredentialProviderBeginSignInController$handleResponse$5.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

45 lines
2.2 KiB
Java

package androidx.credentials.playservices.controllers.BeginSignIn;
import androidx.credentials.exceptions.GetCredentialException;
import java.util.concurrent.Executor;
import kotlin.Unit;
import kotlin.jvm.functions.Function0;
import kotlin.jvm.internal.Lambda;
/* loaded from: classes.dex */
public final class CredentialProviderBeginSignInController$handleResponse$5 extends Lambda implements Function0 {
final /* synthetic */ GetCredentialException $e;
final /* synthetic */ CredentialProviderBeginSignInController this$0;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public CredentialProviderBeginSignInController$handleResponse$5(CredentialProviderBeginSignInController credentialProviderBeginSignInController, GetCredentialException getCredentialException) {
super(0);
this.this$0 = credentialProviderBeginSignInController;
this.$e = getCredentialException;
}
@Override // kotlin.jvm.functions.Function0
public /* bridge */ /* synthetic */ Object invoke() {
m94invoke();
return Unit.INSTANCE;
}
/* JADX INFO: Access modifiers changed from: private */
public static final void invoke$lambda$0(CredentialProviderBeginSignInController credentialProviderBeginSignInController, GetCredentialException getCredentialException) {
credentialProviderBeginSignInController.getCallback().onError(getCredentialException);
}
/* renamed from: invoke, reason: collision with other method in class */
public final void m94invoke() {
Executor executor = this.this$0.getExecutor();
final CredentialProviderBeginSignInController credentialProviderBeginSignInController = this.this$0;
final GetCredentialException getCredentialException = this.$e;
executor.execute(new Runnable() { // from class: androidx.credentials.playservices.controllers.BeginSignIn.CredentialProviderBeginSignInController$handleResponse$5$$ExternalSyntheticLambda0
@Override // java.lang.Runnable
public final void run() {
CredentialProviderBeginSignInController$handleResponse$5.invoke$lambda$0(CredentialProviderBeginSignInController.this, getCredentialException);
}
});
}
}