Files
rr3-apk/decompiled/sources/com/google/android/gms/auth/api/zbd.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

52 lines
1.4 KiB
Java

package com.google.android.gms.auth.api;
import android.os.Bundle;
import androidx.annotation.Nullable;
import com.google.android.gms.common.api.Api;
import com.google.android.gms.common.internal.Objects;
@Deprecated
/* loaded from: classes2.dex */
public final class zbd implements Api.ApiOptions.Optional {
public static final zbd zba = new zbd(new zbc());
private final String zbb = null;
private final boolean zbc;
@Nullable
private final String zbd;
public zbd(zbc zbcVar) {
this.zbc = zbcVar.zba.booleanValue();
this.zbd = zbcVar.zbb;
}
public static /* bridge */ /* synthetic */ String zbb(zbd zbdVar) {
String str = zbdVar.zbb;
return null;
}
public final boolean equals(@Nullable Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof zbd)) {
return false;
}
zbd zbdVar = (zbd) obj;
String str = zbdVar.zbb;
return Objects.equal(null, null) && this.zbc == zbdVar.zbc && Objects.equal(this.zbd, zbdVar.zbd);
}
public final int hashCode() {
return Objects.hashCode(null, Boolean.valueOf(this.zbc), this.zbd);
}
public final Bundle zba() {
Bundle bundle = new Bundle();
bundle.putString("consumer_package", null);
bundle.putBoolean("force_save_dialog", this.zbc);
bundle.putString("log_session_id", this.zbd);
return bundle;
}
}