Files
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

35 lines
1.1 KiB
Java

package com.fyber.inneractive.sdk.config.remote;
import android.text.TextUtils;
import com.fyber.inneractive.sdk.config.enums.Track;
import java.util.LinkedHashSet;
import java.util.Set;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class e {
public Set<Track> a = null;
public static e a(JSONObject jSONObject) {
Track fromValue;
e eVar = null;
if (jSONObject == null) {
return null;
}
JSONArray optJSONArray = jSONObject.optJSONArray("track");
if (optJSONArray != null) {
eVar = new e();
LinkedHashSet linkedHashSet = new LinkedHashSet();
for (int i = 0; i < optJSONArray.length(); i++) {
String optString = optJSONArray.optString(i);
if (!TextUtils.isEmpty(optString) && (fromValue = Track.fromValue(optString)) != null) {
linkedHashSet.add(fromValue);
}
}
eVar.a = linkedHashSet;
}
return eVar;
}
}