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,5 @@
package com.digitalturbine.ignite.authenticator.events;
/* loaded from: classes2.dex */
public interface a {
}

View File

@@ -0,0 +1,31 @@
package com.digitalturbine.ignite.authenticator.events;
import com.fyber.inneractive.sdk.network.q;
import com.fyber.inneractive.sdk.network.s;
import com.fyber.inneractive.sdk.util.IAlog;
/* loaded from: classes2.dex */
public final class b {
public static final b b = new b();
public a a;
public static void a(a aVar) {
b.a = aVar;
}
public static void a(d dVar, Exception exc) {
a(dVar, com.digitalturbine.ignite.authenticator.utils.events.a.a(exc, null));
}
public static void a(d dVar, Object... objArr) {
com.digitalturbine.ignite.authenticator.logger.a.a("%s : dispatching event", "IgniteEventDispatcher");
if (b.a != null) {
q a = q.a(dVar);
if (a == null) {
IAlog.f("%s : One DT Error: %s is missing in IAReportError map", "IgniteEventDispatcherWrapper", dVar);
} else {
new s.a(a).a(objArr).a((String) null);
}
}
}
}

View File

@@ -0,0 +1,32 @@
package com.digitalturbine.ignite.authenticator.events;
import java.util.HashMap;
import java.util.Map;
/* loaded from: classes2.dex */
public enum c {
FAILED_INIT_ENCRYPTION("failed to init encryption"),
FAILED_EXTRACT_ENCRYPTED_DATA("failed to extract encrypted data"),
FAILED_STORE_ENCRYPTED_DATA("failed to store encrypted data"),
IGNITE_SERVICE_UNAVAILABLE("Ignite service unavailable"),
IGNITE_SERVICE_INVALID_SESSION("Invalid session token"),
ONE_DT_EMPTY_ENTITY("received empty one dt from the service"),
ONE_DT_AUTHENTICATOR_DESTROYED("authenticator already destroyed");
private static final Map<String, c> CONSTANTS = new HashMap();
private final String value;
static {
for (c cVar : values()) {
CONSTANTS.put(cVar.value, cVar);
}
}
c(String str) {
this.value = str;
}
public final String e() {
return this.value;
}
}

View File

@@ -0,0 +1,22 @@
package com.digitalturbine.ignite.authenticator.events;
/* loaded from: classes2.dex */
public enum d {
ENCRYPTION_EXCEPTION("ENCRYPTION_EXCEPTION"),
RAW_ONE_DT_ERROR("RAW_ONE_DT_ERROR"),
ONE_DT_PARSE_ERROR("ONE_DT_PARSE_ERROR"),
ONE_DT_AUTHENTICATION_ERROR("ONE_DT_AUTHENTICATION_ERROR"),
ONE_DT_BROADCAST_ERROR("ONE_DT_BROADCAST_ERROR"),
ONE_DT_REQUEST_ERROR("ONE_DT_REQUEST_ERROR"),
ONE_DT_GENERAL_ERROR("ONE_DT_GENERAL_ERROR");
int mVal;
d(String str) {
this.mVal = r2;
}
public final int e() {
return this.mVal;
}
}