- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
52 lines
2.8 KiB
Java
52 lines
2.8 KiB
Java
package androidx.credentials.playservices.controllers.GetRestoreCredential;
|
|
|
|
import androidx.credentials.CredentialManagerCallback;
|
|
import androidx.credentials.GetCredentialResponse;
|
|
import androidx.credentials.exceptions.GetCredentialException;
|
|
import androidx.credentials.exceptions.GetCredentialUnknownException;
|
|
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 CredentialProviderGetDigitalCredentialController$handleResponse$5 extends Lambda implements Function0 {
|
|
final /* synthetic */ GetCredentialException $providerException;
|
|
final /* synthetic */ CredentialProviderGetDigitalCredentialController this$0;
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public CredentialProviderGetDigitalCredentialController$handleResponse$5(CredentialProviderGetDigitalCredentialController credentialProviderGetDigitalCredentialController, GetCredentialException getCredentialException) {
|
|
super(0);
|
|
this.this$0 = credentialProviderGetDigitalCredentialController;
|
|
this.$providerException = getCredentialException;
|
|
}
|
|
|
|
@Override // kotlin.jvm.functions.Function0
|
|
public /* bridge */ /* synthetic */ Object invoke() {
|
|
m124invoke();
|
|
return Unit.INSTANCE;
|
|
}
|
|
|
|
/* renamed from: invoke, reason: collision with other method in class */
|
|
public final void m124invoke() {
|
|
Executor executor = this.this$0.getExecutor();
|
|
final CredentialProviderGetDigitalCredentialController credentialProviderGetDigitalCredentialController = this.this$0;
|
|
final GetCredentialException getCredentialException = this.$providerException;
|
|
executor.execute(new Runnable() { // from class: androidx.credentials.playservices.controllers.GetRestoreCredential.CredentialProviderGetDigitalCredentialController$handleResponse$5$$ExternalSyntheticLambda0
|
|
@Override // java.lang.Runnable
|
|
public final void run() {
|
|
CredentialProviderGetDigitalCredentialController$handleResponse$5.invoke$lambda$0(CredentialProviderGetDigitalCredentialController.this, getCredentialException);
|
|
}
|
|
});
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public static final void invoke$lambda$0(CredentialProviderGetDigitalCredentialController credentialProviderGetDigitalCredentialController, GetCredentialException getCredentialException) {
|
|
CredentialManagerCallback<GetCredentialResponse, GetCredentialException> callback = credentialProviderGetDigitalCredentialController.getCallback();
|
|
if (getCredentialException == null) {
|
|
getCredentialException = new GetCredentialUnknownException("Unexpected configuration error");
|
|
}
|
|
callback.onError(getCredentialException);
|
|
}
|
|
}
|