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,39 @@
package com.fyber.inneractive.sdk.util;
import java.util.Locale;
/* loaded from: classes2.dex */
public enum h {
DISPLAY("DISPLAY"),
VIDEO_CTA("VIDEO_CTA"),
VIDEO_CLICK("VIDEO_CLICK"),
VAST_ENDCARD("VAST_ENDCARD"),
DEFAULT_ENDCARD("DEFAULT_ENDCARD"),
VIDEO_APP_INFO("VIDEO_APP_INFO"),
FMP_ENDCARD("FMP_ENDCARD");
private final String key;
private String mVersion = "";
private int mOrderShown = 0;
h(String str) {
this.key = str;
}
public final void a(int i) {
this.mOrderShown = i;
}
public final void a(String str) {
this.mVersion = str;
}
public final String e() {
return this.mVersion;
}
@Override // java.lang.Enum
public final String toString() {
return ((this == FMP_ENDCARD && this.mOrderShown == 1) || this.mOrderShown == 2) ? String.format(Locale.US, "%s_%d", this.key, Integer.valueOf(this.mOrderShown)) : this.key;
}
}