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,23 @@
package com.mbridge.msdk.dycreator.b;
/* loaded from: classes4.dex */
public final class a {
private int a;
private String b;
public a(b bVar) {
if (bVar != null) {
this.a = bVar.a();
this.b = bVar.b();
}
}
public a(int i, String str) {
this.a = i;
this.b = str;
}
public final String toString() {
return "DyError{errorCode=" + this.a + '}';
}
}

View File

@@ -0,0 +1,29 @@
package com.mbridge.msdk.dycreator.b;
/* loaded from: classes4.dex */
public enum b {
NOT_FOUND_VIEWOPTION(-101, "ViewOption is null"),
NOT_FOUND_CONTEXT(-102, "context is null"),
FILE_CREATE_VIEW_FILE(-103, "file create view is null"),
CAMPAIGNEX_IS_NULL(-104, "Campaign size only one"),
NOT_FOUND_CAMPAIGN(-105, "campaign is null"),
NOT_FOUND_DYNAMIC_FILE(-106, "dynamic file is not exits"),
BIND_DATA_FILE_OR_DIR(-107, "data file or file dir is not exits "),
NOT_FOUND_DYNAMIC_OPTION(-108, "dynamic_option is not exits");
private int i;
private String j;
public final int a() {
return this.i;
}
public final String b() {
return this.j;
}
b(int i, String str) {
this.i = i;
this.j = str;
}
}