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

60 lines
1.9 KiB
Java

package com.google.android.gms.internal.ads;
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.Nullable;
import com.ironsource.mediationsdk.logger.IronSourceError;
import java.util.Arrays;
/* loaded from: classes3.dex */
public final class zzafv extends zzagh {
public static final Parcelable.Creator<zzafv> CREATOR = new zzafu();
public final byte[] zza;
/* JADX WARN: Illegal instructions before constructor call */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public zzafv(android.os.Parcel r3) {
/*
r2 = this;
java.lang.String r0 = r3.readString()
int r1 = com.google.android.gms.internal.ads.zzei.zza
r2.<init>(r0)
byte[] r3 = r3.createByteArray()
r2.zza = r3
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.google.android.gms.internal.ads.zzafv.<init>(android.os.Parcel):void");
}
public final boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj != null && zzafv.class == obj.getClass()) {
zzafv zzafvVar = (zzafv) obj;
if (this.zzf.equals(zzafvVar.zzf) && Arrays.equals(this.zza, zzafvVar.zza)) {
return true;
}
}
return false;
}
public final int hashCode() {
return ((this.zzf.hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + Arrays.hashCode(this.zza);
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.zzf);
parcel.writeByteArray(this.zza);
}
public zzafv(String str, byte[] bArr) {
super(str);
this.zza = bArr;
}
}