Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 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();
}
}