- 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
22 lines
961 B
Java
22 lines
961 B
Java
package androidx.credentials;
|
|
|
|
import androidx.credentials.PrepareGetCredentialResponse;
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.FunctionReferenceImpl;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public /* synthetic */ class PrepareGetCredentialResponse$Builder$setFrameworkResponse$1 extends FunctionReferenceImpl implements Function1 {
|
|
public PrepareGetCredentialResponse$Builder$setFrameworkResponse$1(Object obj) {
|
|
super(1, obj, PrepareGetCredentialResponse.Builder.class, "hasCredentialType", "hasCredentialType(Ljava/lang/String;)Z", 0);
|
|
}
|
|
|
|
@Override // kotlin.jvm.functions.Function1
|
|
public final Boolean invoke(String p0) {
|
|
boolean hasCredentialType;
|
|
Intrinsics.checkNotNullParameter(p0, "p0");
|
|
hasCredentialType = ((PrepareGetCredentialResponse.Builder) this.receiver).hasCredentialType(p0);
|
|
return Boolean.valueOf(hasCredentialType);
|
|
}
|
|
}
|