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,51 @@
package com.ironsource.adqualitysdk.sdk;
/* loaded from: classes4.dex */
public enum ISAdQualityMediationNetwork {
UNKNOWN(-1),
ADMOB(0),
DT_FAIR_BID(1),
HELIUM(2),
LEVEL_PLAY(3),
MAX(4),
UNITY(5),
SELF_MEDIATED(6),
OTHER(7);
/* renamed from: メ, reason: contains not printable characters */
private final int f36;
public static ISAdQualityMediationNetwork fromInt(int i) {
switch (i) {
case -1:
return UNKNOWN;
case 0:
return ADMOB;
case 1:
return DT_FAIR_BID;
case 2:
return HELIUM;
case 3:
return LEVEL_PLAY;
case 4:
return MAX;
case 5:
return UNITY;
case 6:
return SELF_MEDIATED;
case 7:
return OTHER;
default:
return null;
}
}
public final int getValue() {
return this.f36;
}
ISAdQualityMediationNetwork(int i) {
this.f36 = i;
}
}