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.amazonaws.util;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.jar.JarFile;
/* loaded from: classes.dex */
public enum Classes {
;
public static Class<?> childClassOf(Class<?> cls, Object obj) {
if (obj == null || obj == Object.class) {
return null;
}
if (cls != null && cls.isInterface()) {
return null;
}
Class<?> cls2 = obj.getClass();
while (true) {
Class<? super Object> superclass = cls2.getSuperclass();
if (superclass == cls) {
return cls2;
}
if (superclass == null) {
return null;
}
cls2 = superclass;
}
}
public static JarFile jarFileOf(Class<?> cls) {
URL resource = cls.getResource("/" + cls.getName().replace('.', '/') + ".class");
if (resource == null) {
return null;
}
String file = resource.getFile();
int indexOf = file.indexOf("file:") + 5;
int indexOf2 = file.indexOf(".jar!");
if (indexOf2 == -1) {
return null;
}
File file2 = new File(file.substring(indexOf, indexOf2 + 4));
try {
if (file2.exists()) {
return new JarFile(file2);
}
return null;
} catch (IOException e) {
throw new IllegalStateException(e);
}
}
}