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

70 lines
2.0 KiB
Java

package com.google.android.gms.internal.ads;
import android.graphics.drawable.Drawable;
import androidx.annotation.Nullable;
/* loaded from: classes3.dex */
final class zzeay extends zzebc {
@Nullable
private final String zza;
private final String zzb;
@Nullable
private final Drawable zzc;
public zzeay(@Nullable String str, String str2, @Nullable Drawable drawable) {
this.zza = str;
if (str2 == null) {
throw new NullPointerException("Null imageUrl");
}
this.zzb = str2;
this.zzc = drawable;
}
public final boolean equals(Object obj) {
Drawable drawable;
if (obj == this) {
return true;
}
if (obj instanceof zzebc) {
zzebc zzebcVar = (zzebc) obj;
String str = this.zza;
if (str != null ? str.equals(zzebcVar.zzb()) : zzebcVar.zzb() == null) {
if (this.zzb.equals(zzebcVar.zzc()) && ((drawable = this.zzc) != null ? drawable.equals(zzebcVar.zza()) : zzebcVar.zza() == null)) {
return true;
}
}
}
return false;
}
public final int hashCode() {
String str = this.zza;
int hashCode = (((str == null ? 0 : str.hashCode()) ^ 1000003) * 1000003) ^ this.zzb.hashCode();
Drawable drawable = this.zzc;
return (hashCode * 1000003) ^ (drawable != null ? drawable.hashCode() : 0);
}
public final String toString() {
return "OfflineAdAssets{advertiserName=" + this.zza + ", imageUrl=" + this.zzb + ", icon=" + String.valueOf(this.zzc) + "}";
}
@Override // com.google.android.gms.internal.ads.zzebc
@Nullable
public final Drawable zza() {
return this.zzc;
}
@Override // com.google.android.gms.internal.ads.zzebc
@Nullable
public final String zzb() {
return this.zza;
}
@Override // com.google.android.gms.internal.ads.zzebc
public final String zzc() {
return this.zzb;
}
}