Files
rr3-apk/decompiled-community/sources/com/mbridge/msdk/videocommon/b/b.java
Daniel Elliott c080f0d97f 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
2026-02-18 15:48:36 -08:00

47 lines
1.3 KiB
Java

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;
}
}