Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,62 @@
package com.google.android.gms.common.internal;
import android.os.Bundle;
import com.google.android.gms.common.api.Api;
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
/* JADX INFO: loaded from: classes2.dex */
public class TelemetryLoggingOptions implements Api.ApiOptions.Optional {
public static final TelemetryLoggingOptions zaa = builder().build();
private final String zab;
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
public static class Builder {
private String zaa;
private Builder() {
}
/* synthetic */ Builder(zaac zaacVar) {
}
public TelemetryLoggingOptions build() {
return new TelemetryLoggingOptions(this.zaa, null);
}
public Builder setApi(String str) {
this.zaa = str;
return this;
}
}
/* synthetic */ TelemetryLoggingOptions(String str, zaad zaadVar) {
this.zab = str;
}
public static Builder builder() {
return new Builder(null);
}
public final boolean equals(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);
}
public final Bundle zaa() {
Bundle bundle = new Bundle();
String str = this.zab;
if (str != null) {
bundle.putString("api", str);
}
return bundle;
}
}