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,45 @@
package com.fyber.inneractive.sdk.config.remote;
import android.text.TextUtils;
import com.fyber.inneractive.sdk.config.enums.Vendor;
import java.util.LinkedHashSet;
import java.util.Set;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class j {
public Integer a;
public Integer b;
public Set<Vendor> c = null;
public static j a(JSONObject jSONObject) {
Vendor fromValue;
if (jSONObject == null) {
return null;
}
Integer valueOf = Integer.valueOf(jSONObject.optInt("pausePct", Integer.MIN_VALUE));
Integer valueOf2 = Integer.valueOf(jSONObject.optInt("playPct", Integer.MIN_VALUE));
j jVar = new j();
if (valueOf.intValue() == Integer.MIN_VALUE) {
valueOf = null;
}
jVar.a = valueOf;
if (valueOf2.intValue() == Integer.MIN_VALUE) {
valueOf2 = null;
}
jVar.b = valueOf2;
JSONArray optJSONArray = jSONObject.optJSONArray("vendor");
if (optJSONArray != null) {
LinkedHashSet linkedHashSet = new LinkedHashSet();
for (int i = 0; i < optJSONArray.length(); i++) {
String optString = optJSONArray.optString(i, null);
if (!TextUtils.isEmpty(optString) && (fromValue = Vendor.fromValue(optString)) != null) {
linkedHashSet.add(fromValue);
}
}
jVar.c = linkedHashSet;
}
return jVar;
}
}