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,33 @@
package com.vungle.ads;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class InternalError extends VungleError {
public /* synthetic */ InternalError(int i, String str, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this(i, (i2 & 2) != 0 ? null : str);
}
public InternalError(int i, String str) {
super(Integer.valueOf(i), null, str, null, null, null, 58, null);
}
@Override // com.vungle.ads.VungleError
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!Intrinsics.areEqual(InternalError.class, obj != null ? obj.getClass() : null)) {
return false;
}
int code = getCode();
Intrinsics.checkNotNull(obj, "null cannot be cast to non-null type com.vungle.ads.InternalError");
return code == ((InternalError) obj).getCode();
}
@Override // com.vungle.ads.VungleError
public int hashCode() {
return InternalError.class.hashCode();
}
}