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,63 @@
package com.ironsource.mediationsdk.config;
/* loaded from: classes4.dex */
public class ConfigFile {
private static ConfigFile mInstance;
private String mPluginFrameworkVersion;
private String mPluginType;
private String mPluginVersion;
private String[] mSupportedPlugins = {"AdobeAir", "Cocos2dx", "Cordova", "Corona", "Defold", "Flutter", "ReactNative", "Unity", "Unreal", "Xamarin", "Other"};
public static synchronized ConfigFile getConfigFile() {
ConfigFile configFile;
synchronized (ConfigFile.class) {
try {
if (mInstance == null) {
mInstance = new ConfigFile();
}
configFile = mInstance;
} catch (Throwable th) {
throw th;
}
}
return configFile;
}
public String getPluginFrameworkVersion() {
return this.mPluginFrameworkVersion;
}
public String getPluginType() {
return this.mPluginType;
}
public String getPluginVersion() {
return this.mPluginVersion;
}
public void setPluginData(String str, String str2, String str3) {
this.mPluginType = null;
if (str != null) {
String[] strArr = this.mSupportedPlugins;
int length = strArr.length;
int i = 0;
while (true) {
if (i >= length) {
break;
}
String str4 = strArr[i];
if (str.equalsIgnoreCase(str4)) {
this.mPluginType = str4;
break;
}
i++;
}
}
if (str2 != null) {
this.mPluginVersion = str2;
}
if (str3 != null) {
this.mPluginFrameworkVersion = str3;
}
}
}

View File

@@ -0,0 +1,18 @@
package com.ironsource.mediationsdk.config;
/* loaded from: classes4.dex */
public final class VersionInfo {
public static final String BUILD_DATE = "2024-09-26T11:33:51Z";
public static final long BUILD_UNIX_TIME = 1727350431794L;
public static final int DIRTY = 0;
public static final String GIT_BRANCH = "release/8.4.0";
public static final String GIT_DATE = "2024-09-24T15:11:03Z";
public static final int GIT_REVISION = 1;
public static final String GIT_SHA = "8b48d21c390b5a17d6dee3de04fbc64a70e10ec6";
public static final String MAVEN_GROUP = "";
public static final String MAVEN_NAME = "android-mediation-sdk";
public static final String VERSION = "8.4.0";
private VersionInfo() {
}
}