Files
rr3-apk/decompiled-community/sources/com/google/android/gms/common/internal/TelemetryLoggingOptions.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -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;
}
}