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,53 @@
package com.applovin.impl;
import java.io.EOFException;
/* loaded from: classes.dex */
public abstract class n8 {
public static void a(boolean z, String str) {
if (!z) {
throw dh.a(str, null);
}
}
public static boolean b(l8 l8Var, byte[] bArr, int i, int i2) {
try {
l8Var.d(bArr, i, i2);
return true;
} catch (EOFException unused) {
return false;
}
}
public static boolean a(l8 l8Var, byte[] bArr, int i, int i2, boolean z) {
try {
return l8Var.b(bArr, i, i2, z);
} catch (EOFException e) {
if (z) {
return false;
}
throw e;
}
}
public static int a(l8 l8Var, byte[] bArr, int i, int i2) {
int i3 = 0;
while (i3 < i2) {
int b = l8Var.b(bArr, i + i3, i2 - i3);
if (b == -1) {
break;
}
i3 += b;
}
return i3;
}
public static boolean a(l8 l8Var, int i) {
try {
l8Var.a(i);
return true;
} catch (EOFException unused) {
return false;
}
}
}