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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
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.Objects;
/* loaded from: classes3.dex */
public final class zzags extends zzagh {
public static final Parcelable.Creator<zzags> CREATOR = new zzagr();
@Nullable
public final String zza;
public final String zzb;
/* 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 zzags(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)
java.lang.String r0 = r3.readString()
r2.zza = r0
java.lang.String r3 = r3.readString()
r2.zzb = r3
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.google.android.gms.internal.ads.zzags.<init>(android.os.Parcel):void");
}
public final boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj != null && zzags.class == obj.getClass()) {
zzags zzagsVar = (zzags) obj;
if (this.zzf.equals(zzagsVar.zzf) && Objects.equals(this.zza, zzagsVar.zza) && Objects.equals(this.zzb, zzagsVar.zzb)) {
return true;
}
}
return false;
}
public final int hashCode() {
int hashCode = this.zzf.hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE;
String str = this.zza;
int hashCode2 = str != null ? str.hashCode() : 0;
int i = hashCode * 31;
String str2 = this.zzb;
return ((i + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0);
}
@Override // com.google.android.gms.internal.ads.zzagh
public final String toString() {
return this.zzf + ": url=" + this.zzb;
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.zzf);
parcel.writeString(this.zza);
parcel.writeString(this.zzb);
}
public zzags(String str, @Nullable String str2, String str3) {
super(str);
this.zza = str2;
this.zzb = str3;
}
}