- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
24 lines
672 B
Java
24 lines
672 B
Java
package androidx.credentials;
|
|
|
|
import android.os.Bundle;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class FederatedCredential extends Credential {
|
|
public static final Companion Companion = new Companion(null);
|
|
public static final String TYPE_FEDERATED_CREDENTIAL = "type.federated_credential";
|
|
|
|
private FederatedCredential() {
|
|
super(TYPE_FEDERATED_CREDENTIAL, new Bundle());
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
}
|