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,69 @@
package com.applovin.impl;
import android.os.Parcel;
import android.os.Parcelable;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes.dex */
public final class up extends ya {
public static final Parcelable.Creator<up> CREATOR = new a();
public final String b;
public final String c;
@Override // com.applovin.impl.ya
public String toString() {
return this.a + ": url=" + this.c;
}
public up(Parcel parcel) {
super((String) xp.a((Object) parcel.readString()));
this.b = parcel.readString();
this.c = (String) xp.a((Object) parcel.readString());
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || up.class != obj.getClass()) {
return false;
}
up upVar = (up) obj;
return this.a.equals(upVar.a) && xp.a((Object) this.b, (Object) upVar.b) && xp.a((Object) this.c, (Object) upVar.c);
}
public int hashCode() {
int hashCode = (this.a.hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31;
String str = this.b;
int hashCode2 = (hashCode + (str != null ? str.hashCode() : 0)) * 31;
String str2 = this.c;
return hashCode2 + (str2 != null ? str2.hashCode() : 0);
}
public up(String str, String str2, String str3) {
super(str);
this.b = str2;
this.c = str3;
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.a);
parcel.writeString(this.b);
parcel.writeString(this.c);
}
public class a implements Parcelable.Creator {
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public up[] newArray(int i) {
return new up[i];
}
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public up createFromParcel(Parcel parcel) {
return new up(parcel);
}
}
}