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,46 @@
package com.mbridge.msdk.videocommon.b;
import java.util.ArrayList;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes4.dex */
public final class b {
private int a;
private int b;
private a c;
public final int a() {
return this.a;
}
public final int b() {
return this.b;
}
public b(int i, int i2, a aVar) {
this.a = i;
this.b = i2;
this.c = aVar;
}
public static List<b> a(JSONArray jSONArray) {
if (jSONArray != null && jSONArray.length() > 0) {
ArrayList arrayList = new ArrayList();
for (int i = 0; i < jSONArray.length(); i++) {
try {
JSONObject optJSONObject = jSONArray.optJSONObject(i);
int optInt = optJSONObject.optInt("id");
int optInt2 = optJSONObject.optInt("timeout");
JSONObject optJSONObject2 = optJSONObject.optJSONObject("params");
arrayList.add(new b(optInt, optInt2, optJSONObject2 != null ? a.a(optJSONObject2) : null));
} catch (Exception e) {
e.printStackTrace();
}
}
return arrayList;
}
return null;
}
}