- 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
26 lines
737 B
Java
26 lines
737 B
Java
package androidx.credentials;
|
|
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class PendingGetCredentialRequest {
|
|
private final Function1 callback;
|
|
private final GetCredentialRequest request;
|
|
|
|
public final Function1 getCallback() {
|
|
return this.callback;
|
|
}
|
|
|
|
public final GetCredentialRequest getRequest() {
|
|
return this.request;
|
|
}
|
|
|
|
public PendingGetCredentialRequest(GetCredentialRequest request, Function1 callback) {
|
|
Intrinsics.checkNotNullParameter(request, "request");
|
|
Intrinsics.checkNotNullParameter(callback, "callback");
|
|
this.request = request;
|
|
this.callback = callback;
|
|
}
|
|
}
|