Files
rr3-apk/decompiled/sources/com/google/android/gms/common/internal/TelemetryLoggingOptions.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

79 lines
1.8 KiB
Java

package com.google.android.gms.common.internal;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.google.android.gms.common.annotation.KeepForSdk;
import com.google.android.gms.common.api.Api;
@KeepForSdk
/* loaded from: classes2.dex */
public class TelemetryLoggingOptions implements Api.ApiOptions.Optional {
@NonNull
public static final TelemetryLoggingOptions zaa = builder().build();
@Nullable
private final String zab;
@KeepForSdk
public static class Builder {
@Nullable
private String zaa;
private Builder() {
}
public /* synthetic */ Builder(zaac zaacVar) {
}
@NonNull
@KeepForSdk
public TelemetryLoggingOptions build() {
return new TelemetryLoggingOptions(this.zaa, null);
}
@NonNull
@KeepForSdk
public Builder setApi(@Nullable String str) {
this.zaa = str;
return this;
}
}
public /* synthetic */ TelemetryLoggingOptions(String str, zaad zaadVar) {
this.zab = str;
}
@NonNull
@KeepForSdk
public static Builder builder() {
return new Builder(null);
}
public final boolean equals(@Nullable Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof TelemetryLoggingOptions) {
return Objects.equal(this.zab, ((TelemetryLoggingOptions) obj).zab);
}
return false;
}
public final int hashCode() {
return Objects.hashCode(this.zab);
}
@NonNull
public final Bundle zaa() {
Bundle bundle = new Bundle();
String str = this.zab;
if (str != null) {
bundle.putString("api", str);
}
return bundle;
}
}