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,79 @@
package com.applovin.impl;
import android.os.Parcel;
import android.os.Parcelable;
import com.ironsource.mediationsdk.logger.IronSourceError;
import com.mbridge.msdk.playercommon.exoplayer2.metadata.id3.GeobFrame;
import java.util.Arrays;
/* loaded from: classes.dex */
public final class aa extends ya {
public static final Parcelable.Creator<aa> CREATOR = new a();
public final String b;
public final String c;
public final String d;
public final byte[] f;
@Override // com.applovin.impl.ya
public String toString() {
return this.a + ": mimeType=" + this.b + ", filename=" + this.c + ", description=" + this.d;
}
public aa(Parcel parcel) {
super(GeobFrame.ID);
this.b = (String) xp.a((Object) parcel.readString());
this.c = (String) xp.a((Object) parcel.readString());
this.d = (String) xp.a((Object) parcel.readString());
this.f = (byte[]) xp.a((Object) parcel.createByteArray());
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || aa.class != obj.getClass()) {
return false;
}
aa aaVar = (aa) obj;
return xp.a((Object) this.b, (Object) aaVar.b) && xp.a((Object) this.c, (Object) aaVar.c) && xp.a((Object) this.d, (Object) aaVar.d) && Arrays.equals(this.f, aaVar.f);
}
public int hashCode() {
String str = this.b;
int hashCode = ((str != null ? str.hashCode() : 0) + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31;
String str2 = this.c;
int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
String str3 = this.d;
return ((hashCode2 + (str3 != null ? str3.hashCode() : 0)) * 31) + Arrays.hashCode(this.f);
}
public aa(String str, String str2, String str3, byte[] bArr) {
super(GeobFrame.ID);
this.b = str;
this.c = str2;
this.d = str3;
this.f = bArr;
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.b);
parcel.writeString(this.c);
parcel.writeString(this.d);
parcel.writeByteArray(this.f);
}
public class a implements Parcelable.Creator {
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public aa[] newArray(int i) {
return new aa[i];
}
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public aa createFromParcel(Parcel parcel) {
return new aa(parcel);
}
}
}