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,75 @@
package com.applovin.impl;
import com.applovin.exoplayer2.common.base.Preconditions;
import java.util.NoSuchElementException;
/* loaded from: classes.dex */
public abstract class d extends pp {
private b a = b.NOT_READY;
private Object b;
public static /* synthetic */ class a {
static final /* synthetic */ int[] a;
static {
int[] iArr = new int[b.values().length];
a = iArr;
try {
iArr[b.DONE.ordinal()] = 1;
} catch (NoSuchFieldError unused) {
}
try {
a[b.READY.ordinal()] = 2;
} catch (NoSuchFieldError unused2) {
}
}
}
public enum b {
READY,
NOT_READY,
DONE,
FAILED
}
public abstract Object a();
public final Object b() {
this.a = b.DONE;
return null;
}
@Override // java.util.Iterator
public final boolean hasNext() {
Preconditions.checkState(this.a != b.FAILED);
int i = a.a[this.a.ordinal()];
if (i == 1) {
return false;
}
if (i != 2) {
return c();
}
return true;
}
private boolean c() {
this.a = b.FAILED;
this.b = a();
if (this.a == b.DONE) {
return false;
}
this.a = b.READY;
return true;
}
@Override // java.util.Iterator
public final Object next() {
if (hasNext()) {
this.a = b.NOT_READY;
Object obj = this.b;
this.b = null;
return obj;
}
throw new NoSuchElementException();
}
}