- 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
44 lines
2.2 KiB
Java
44 lines
2.2 KiB
Java
package androidx.credentials.playservices.controllers.GetRestoreCredential;
|
|
|
|
import androidx.credentials.CredentialManagerCallback;
|
|
import androidx.credentials.GetCredentialResponse;
|
|
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 CredentialProviderGetDigitalCredentialController$invokePlayServices$2$1 extends Lambda implements Function0 {
|
|
final /* synthetic */ CredentialManagerCallback<GetCredentialResponse, GetCredentialException> $callback;
|
|
final /* synthetic */ Executor $executor;
|
|
final /* synthetic */ GetCredentialException $getException;
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public CredentialProviderGetDigitalCredentialController$invokePlayServices$2$1(Executor executor, CredentialManagerCallback<GetCredentialResponse, GetCredentialException> credentialManagerCallback, GetCredentialException getCredentialException) {
|
|
super(0);
|
|
this.$executor = executor;
|
|
this.$callback = credentialManagerCallback;
|
|
this.$getException = getCredentialException;
|
|
}
|
|
|
|
@Override // kotlin.jvm.functions.Function0
|
|
public /* bridge */ /* synthetic */ Object invoke() {
|
|
m125invoke();
|
|
return Unit.INSTANCE;
|
|
}
|
|
|
|
/* renamed from: invoke, reason: collision with other method in class */
|
|
public final void m125invoke() {
|
|
Executor executor = this.$executor;
|
|
final CredentialManagerCallback<GetCredentialResponse, GetCredentialException> credentialManagerCallback = this.$callback;
|
|
final GetCredentialException getCredentialException = this.$getException;
|
|
executor.execute(new Runnable() { // from class: androidx.credentials.playservices.controllers.GetRestoreCredential.CredentialProviderGetDigitalCredentialController$invokePlayServices$2$1$$ExternalSyntheticLambda0
|
|
@Override // java.lang.Runnable
|
|
public final void run() {
|
|
CredentialManagerCallback.this.onError(getCredentialException);
|
|
}
|
|
});
|
|
}
|
|
}
|