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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,98 @@
package com.applovin.impl;
import android.os.Parcel;
import android.os.Parcelable;
import com.applovin.impl.bf;
import com.applovin.impl.vd;
import com.ironsource.mediationsdk.logger.IronSourceError;
import java.util.Arrays;
/* loaded from: classes.dex */
public final class lh implements bf.b {
public static final Parcelable.Creator<lh> CREATOR = new a();
public final int a;
public final String b;
public final String c;
public final int d;
public final int f;
public final int g;
public final int h;
public final byte[] i;
@Override // android.os.Parcelable
public int describeContents() {
return 0;
}
public String toString() {
return "Picture: mimeType=" + this.b + ", description=" + this.c;
}
public lh(int i, String str, String str2, int i2, int i3, int i4, int i5, byte[] bArr) {
this.a = i;
this.b = str;
this.c = str2;
this.d = i2;
this.f = i3;
this.g = i4;
this.h = i5;
this.i = bArr;
}
@Override // com.applovin.impl.bf.b
public void a(vd.b bVar) {
bVar.a(this.i, this.a);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || lh.class != obj.getClass()) {
return false;
}
lh lhVar = (lh) obj;
return this.a == lhVar.a && this.b.equals(lhVar.b) && this.c.equals(lhVar.c) && this.d == lhVar.d && this.f == lhVar.f && this.g == lhVar.g && this.h == lhVar.h && Arrays.equals(this.i, lhVar.i);
}
public int hashCode() {
return ((((((((((((((this.a + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + this.b.hashCode()) * 31) + this.c.hashCode()) * 31) + this.d) * 31) + this.f) * 31) + this.g) * 31) + this.h) * 31) + Arrays.hashCode(this.i);
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeInt(this.a);
parcel.writeString(this.b);
parcel.writeString(this.c);
parcel.writeInt(this.d);
parcel.writeInt(this.f);
parcel.writeInt(this.g);
parcel.writeInt(this.h);
parcel.writeByteArray(this.i);
}
public lh(Parcel parcel) {
this.a = parcel.readInt();
this.b = (String) xp.a((Object) parcel.readString());
this.c = (String) xp.a((Object) parcel.readString());
this.d = parcel.readInt();
this.f = parcel.readInt();
this.g = parcel.readInt();
this.h = parcel.readInt();
this.i = (byte[]) xp.a((Object) parcel.createByteArray());
}
public class a implements Parcelable.Creator {
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public lh[] newArray(int i) {
return new lh[i];
}
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public lh createFromParcel(Parcel parcel) {
return new lh(parcel);
}
}
}