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,54 @@
package com.ironsource;
import java.util.Map;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public class xc {
public static final String b = "userId";
public static final String c = "appKey";
private static xc d;
private JSONObject a = new JSONObject();
private xc() {
}
public static synchronized xc a() {
xc xcVar;
synchronized (xc.class) {
try {
if (d == null) {
d = new xc();
}
xcVar = d;
} catch (Throwable th) {
throw th;
}
}
return xcVar;
}
public synchronized String a(String str) {
return this.a.optString(str);
}
public synchronized void a(String str, Object obj) {
try {
this.a.put(str, obj);
} catch (Exception e) {
i9.d().a(e);
}
}
public synchronized void a(Map<String, Object> map) {
if (map != null) {
for (String str : map.keySet()) {
a(str, map.get(str));
}
}
}
public synchronized JSONObject b() {
return this.a;
}
}