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,82 @@
package com.ironsource;
import com.google.android.gms.drive.DriveFile;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* loaded from: classes2.dex */
public final class mn {
private final boolean a;
private final int b;
/* JADX WARN: Multi-variable type inference failed */
public mn() {
this(false, 0 == true ? 1 : 0, 3, null);
}
public mn(boolean z, int i) {
this.a = z;
this.b = i;
}
public /* synthetic */ mn(boolean z, int i, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this((i2 & 1) != 0 ? false : z, (i2 & 2) != 0 ? DriveFile.MODE_READ_WRITE : i);
}
public static /* synthetic */ mn a(mn mnVar, boolean z, int i, int i2, Object obj) {
if ((i2 & 1) != 0) {
z = mnVar.a;
}
if ((i2 & 2) != 0) {
i = mnVar.b;
}
return mnVar.a(z, i);
}
public final mn a(boolean z, int i) {
return new mn(z, i);
}
public final boolean a() {
return this.a;
}
public final int b() {
return this.b;
}
public final int c() {
return this.b;
}
public final boolean d() {
return this.a;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof mn)) {
return false;
}
mn mnVar = (mn) obj;
return this.a == mnVar.a && this.b == mnVar.b;
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v4 */
/* JADX WARN: Type inference failed for: r0v5 */
public int hashCode() {
boolean z = this.a;
?? r0 = z;
if (z) {
r0 = 1;
}
return (r0 * 31) + Integer.hashCode(this.b);
}
public String toString() {
return "OpenUrlConfigurations(isImmersive=" + this.a + ", flags=" + this.b + ')';
}
}