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,54 @@
package com.ironsource;
import android.util.Log;
import com.ironsource.mediationsdk.logger.IronSourceLogger;
import com.ironsource.mediationsdk.logger.IronSourceLoggerManager;
import com.ironsource.mediationsdk.server.HttpFunctions;
import com.ironsource.mediationsdk.server.ServerURL;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public class zq {
public class a implements Runnable {
final /* synthetic */ String a;
final /* synthetic */ boolean b;
final /* synthetic */ int c;
public a(String str, boolean z, int i) {
this.a = str;
this.b = z;
this.c = i;
}
@Override // java.lang.Runnable
public void run() {
zq.c(this.a, this.b, this.c);
}
}
public static void b(String str, boolean z, int i) {
Thread thread = new Thread(new a(str, z, i), "callAsyncRequestURL");
thread.setUncaughtExceptionHandler(new com.ironsource.mediationsdk.logger.d());
thread.start();
}
/* JADX INFO: Access modifiers changed from: private */
public static void c(String str, boolean z, int i) {
try {
new JSONObject(HttpFunctions.getStringFromURL(ServerURL.getRequestURL(str, z, i)));
IronSourceLoggerManager.getLogger().log(IronSourceLogger.IronSourceTag.NETWORK, "callRequestURL(reqUrl:" + str + ", hit:" + z + ")", 1);
} catch (Throwable th) {
i9.d().a(th);
StringBuilder sb = new StringBuilder("callRequestURL(reqUrl:");
if (str == null) {
str = "null";
}
sb.append(str);
sb.append(", hit:");
sb.append(z);
sb.append(")");
IronSourceLoggerManager.getLogger().log(IronSourceLogger.IronSourceTag.NETWORK, sb.toString() + ", e:" + Log.getStackTraceString(th), 0);
}
}
}