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,52 @@
package com.applovin.impl;
import android.text.TextUtils;
import com.applovin.mediation.MaxAdFormat;
/* loaded from: classes.dex */
public class xe {
private a a;
private String b;
public enum a {
AD_UNIT_ID,
AD_FORMAT,
AD
}
public a a() {
return this.a;
}
public String b() {
return this.b;
}
private xe(a aVar, String str) {
this.a = aVar;
this.b = str;
}
public static xe a(ge geVar) {
String S = geVar.S();
if (TextUtils.isEmpty(S)) {
return null;
}
return new xe(a.AD, S);
}
public static xe a(MaxAdFormat maxAdFormat) {
String label = maxAdFormat.getLabel();
if (TextUtils.isEmpty(label)) {
return null;
}
return new xe(a.AD_FORMAT, label);
}
public static xe a(String str) {
if (TextUtils.isEmpty(str)) {
return null;
}
return new xe(a.AD_UNIT_ID, str);
}
}