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,53 @@
package com.applovin.impl;
import java.io.EOFException;
/* loaded from: classes.dex */
public abstract class n8 {
public static void a(boolean z, String str) {
if (!z) {
throw dh.a(str, null);
}
}
public static boolean b(l8 l8Var, byte[] bArr, int i, int i2) {
try {
l8Var.d(bArr, i, i2);
return true;
} catch (EOFException unused) {
return false;
}
}
public static boolean a(l8 l8Var, byte[] bArr, int i, int i2, boolean z) {
try {
return l8Var.b(bArr, i, i2, z);
} catch (EOFException e) {
if (z) {
return false;
}
throw e;
}
}
public static int a(l8 l8Var, byte[] bArr, int i, int i2) {
int i3 = 0;
while (i3 < i2) {
int b = l8Var.b(bArr, i + i3, i2 - i3);
if (b == -1) {
break;
}
i3 += b;
}
return i3;
}
public static boolean a(l8 l8Var, int i) {
try {
l8Var.a(i);
return true;
} catch (EOFException unused) {
return false;
}
}
}