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,240 @@
package com.iab.omid.library.unity3d.utils;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.Point;
import android.view.WindowManager;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.iab.omid.library.unity3d.adsession.OutputDeviceStatus;
import com.iab.omid.library.unity3d.walking.a;
import com.ironsource.v8;
import java.util.Iterator;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public class c {
private static WindowManager a;
private static String[] b = {"x", "y", "width", "height"};
static float c = Resources.getSystem().getDisplayMetrics().density;
public static /* synthetic */ class a {
static final /* synthetic */ int[] a;
static {
int[] iArr = new int[OutputDeviceStatus.values().length];
a = iArr;
try {
iArr[OutputDeviceStatus.NOT_DETECTED.ordinal()] = 1;
} catch (NoSuchFieldError unused) {
}
}
}
public static class b {
final float a;
final float b;
public b(float f, float f2) {
this.a = f;
this.b = f2;
}
}
public static float a(int i) {
return i / c;
}
private static b a(JSONObject jSONObject) {
float f;
float f2;
if (a != null) {
Point point = new Point(0, 0);
a.getDefaultDisplay().getRealSize(point);
f = a(point.x);
f2 = a(point.y);
} else {
f = 0.0f;
f2 = 0.0f;
}
return new b(f, f2);
}
public static JSONObject a(int i, int i2, int i3, int i4) {
JSONObject jSONObject = new JSONObject();
try {
jSONObject.put("x", a(i));
jSONObject.put("y", a(i2));
jSONObject.put("width", a(i3));
jSONObject.put("height", a(i4));
} catch (JSONException e) {
d.a("Error with creating viewStateObject", e);
}
return jSONObject;
}
public static void a(Context context) {
if (context != null) {
c = context.getResources().getDisplayMetrics().density;
a = (WindowManager) context.getSystemService("window");
}
}
public static void a(JSONObject jSONObject, OutputDeviceStatus outputDeviceStatus) {
try {
jSONObject.put("noOutputDevice", a(outputDeviceStatus));
} catch (JSONException e) {
d.a("Error with setting output device status", e);
}
}
public static void a(JSONObject jSONObject, a.C0146a c0146a) {
com.iab.omid.library.unity3d.internal.e a2 = c0146a.a();
JSONArray jSONArray = new JSONArray();
Iterator<String> it = c0146a.b().iterator();
while (it.hasNext()) {
jSONArray.put(it.next());
}
try {
jSONObject.put("isFriendlyObstructionFor", jSONArray);
jSONObject.put("friendlyObstructionClass", a2.d());
jSONObject.put("friendlyObstructionPurpose", a2.b());
jSONObject.put("friendlyObstructionReason", a2.a());
} catch (JSONException e) {
d.a("Error with setting friendly obstruction", e);
}
}
public static void a(JSONObject jSONObject, Boolean bool) {
try {
jSONObject.put("hasWindowFocus", bool);
} catch (JSONException e) {
d.a("Error with setting has window focus", e);
}
}
public static void a(JSONObject jSONObject, String str) {
try {
jSONObject.put("adSessionId", str);
} catch (JSONException e) {
d.a("Error with setting ad session id", e);
}
}
public static void a(JSONObject jSONObject, String str, Object obj) {
try {
jSONObject.put(str, obj);
} catch (NullPointerException | JSONException e) {
d.a("JSONException during JSONObject.put for name [" + str + v8.i.e, e);
}
}
public static void a(JSONObject jSONObject, JSONObject jSONObject2) {
try {
JSONArray optJSONArray = jSONObject.optJSONArray("childViews");
if (optJSONArray == null) {
optJSONArray = new JSONArray();
jSONObject.put("childViews", optJSONArray);
}
optJSONArray.put(jSONObject2);
} catch (JSONException e) {
e.printStackTrace();
}
}
private static boolean a(OutputDeviceStatus outputDeviceStatus) {
return a.a[outputDeviceStatus.ordinal()] == 1;
}
private static boolean a(JSONArray jSONArray, JSONArray jSONArray2) {
if (jSONArray == null && jSONArray2 == null) {
return true;
}
return (jSONArray == null || jSONArray2 == null || jSONArray.length() != jSONArray2.length()) ? false : true;
}
public static void b(JSONObject jSONObject) {
b a2 = a(jSONObject);
try {
jSONObject.put("width", a2.a);
jSONObject.put("height", a2.b);
} catch (JSONException e) {
e.printStackTrace();
}
}
public static void b(JSONObject jSONObject, String str) {
try {
jSONObject.put("notVisibleReason", str);
} catch (JSONException e) {
d.a("Error with setting not visible reason", e);
}
}
private static boolean b(JSONObject jSONObject, JSONObject jSONObject2) {
JSONArray optJSONArray = jSONObject.optJSONArray("childViews");
JSONArray optJSONArray2 = jSONObject2.optJSONArray("childViews");
if (optJSONArray == null && optJSONArray2 == null) {
return true;
}
if (!a(optJSONArray, optJSONArray2)) {
return false;
}
for (int i = 0; i < optJSONArray.length(); i++) {
if (!h(optJSONArray.optJSONObject(i), optJSONArray2.optJSONObject(i))) {
return false;
}
}
return true;
}
private static boolean c(JSONObject jSONObject, JSONObject jSONObject2) {
JSONArray optJSONArray = jSONObject.optJSONArray("isFriendlyObstructionFor");
JSONArray optJSONArray2 = jSONObject2.optJSONArray("isFriendlyObstructionFor");
if (optJSONArray == null && optJSONArray2 == null) {
return true;
}
if (!a(optJSONArray, optJSONArray2)) {
return false;
}
for (int i = 0; i < optJSONArray.length(); i++) {
if (!optJSONArray.optString(i, "").equals(optJSONArray2.optString(i, ""))) {
return false;
}
}
return true;
}
private static boolean d(JSONObject jSONObject, JSONObject jSONObject2) {
return Boolean.valueOf(jSONObject.optBoolean("hasWindowFocus")).equals(Boolean.valueOf(jSONObject2.optBoolean("hasWindowFocus")));
}
private static boolean e(JSONObject jSONObject, JSONObject jSONObject2) {
return Boolean.valueOf(jSONObject.optBoolean("noOutputDevice")).equals(Boolean.valueOf(jSONObject2.optBoolean("noOutputDevice")));
}
private static boolean f(JSONObject jSONObject, JSONObject jSONObject2) {
for (String str : b) {
if (jSONObject.optDouble(str) != jSONObject2.optDouble(str)) {
return false;
}
}
return true;
}
private static boolean g(JSONObject jSONObject, JSONObject jSONObject2) {
return jSONObject.optString("adSessionId", "").equals(jSONObject2.optString("adSessionId", ""));
}
public static boolean h(@NonNull JSONObject jSONObject, @Nullable JSONObject jSONObject2) {
if (jSONObject == null && jSONObject2 == null) {
return true;
}
if (jSONObject == null || jSONObject2 == null) {
return false;
}
return f(jSONObject, jSONObject2) && g(jSONObject, jSONObject2) && e(jSONObject, jSONObject2) && d(jSONObject, jSONObject2) && c(jSONObject, jSONObject2) && b(jSONObject, jSONObject2);
}
}