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,83 @@
package com.applovin.impl;
import android.os.Parcel;
import android.os.Parcelable;
import com.applovin.impl.bf;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes.dex */
public final class nf implements bf.b {
public static final Parcelable.Creator<nf> CREATOR = new a();
public final long a;
public final long b;
public final long c;
public final long d;
public final long f;
@Override // android.os.Parcelable
public int describeContents() {
return 0;
}
public String toString() {
return "Motion photo metadata: photoStartPosition=" + this.a + ", photoSize=" + this.b + ", photoPresentationTimestampUs=" + this.c + ", videoStartPosition=" + this.d + ", videoSize=" + this.f;
}
public nf(long j, long j2, long j3, long j4, long j5) {
this.a = j;
this.b = j2;
this.c = j3;
this.d = j4;
this.f = j5;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || nf.class != obj.getClass()) {
return false;
}
nf nfVar = (nf) obj;
return this.a == nfVar.a && this.b == nfVar.b && this.c == nfVar.c && this.d == nfVar.d && this.f == nfVar.f;
}
public int hashCode() {
return ((((((((sc.a(this.a) + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + sc.a(this.b)) * 31) + sc.a(this.c)) * 31) + sc.a(this.d)) * 31) + sc.a(this.f);
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeLong(this.a);
parcel.writeLong(this.b);
parcel.writeLong(this.c);
parcel.writeLong(this.d);
parcel.writeLong(this.f);
}
private nf(Parcel parcel) {
this.a = parcel.readLong();
this.b = parcel.readLong();
this.c = parcel.readLong();
this.d = parcel.readLong();
this.f = parcel.readLong();
}
public class a implements Parcelable.Creator {
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public nf[] newArray(int i) {
return new nf[i];
}
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public nf createFromParcel(Parcel parcel) {
return new nf(parcel, null);
}
}
public /* synthetic */ nf(Parcel parcel, a aVar) {
this(parcel);
}
}