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,55 @@
package com.ironsource;
import kotlin.jvm.internal.Intrinsics;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public interface r0 {
public static final class a implements r0 {
private final JSONObject a;
public a(JSONObject applicationConfig) {
Intrinsics.checkNotNullParameter(applicationConfig, "applicationConfig");
this.a = applicationConfig;
}
@Override // com.ironsource.r0
public JSONObject a() {
JSONObject optJSONObject = this.a.optJSONObject("controllerConfig");
return optJSONObject == null ? new JSONObject() : optJSONObject;
}
@Override // com.ironsource.r0
public int b() {
int optInt = this.a.optInt("debugMode", 0);
if (this.a.optBoolean(b.e, false)) {
return 3;
}
return optInt;
}
@Override // com.ironsource.r0
public String c() {
String optString = this.a.optString("controllerUrl");
return optString == null ? "" : optString;
}
}
public static final class b {
public static final b a = new b();
public static final String b = "controllerUrl";
public static final String c = "controllerConfig";
public static final String d = "debugMode";
public static final String e = "adptDebugMode";
private b() {
}
}
JSONObject a();
int b();
String c();
}