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,37 @@
package com.applovin.impl;
import android.os.Looper;
/* loaded from: classes.dex */
public abstract class q6 {
private static final Thread a = Looper.getMainLooper().getThread();
public static void a(Throwable th) {
}
public static void a(Throwable th, String str, Object... objArr) {
}
public static boolean a(boolean z) {
return a(z, "Assertion failed", new Object[0]);
}
public static boolean a(boolean z, String str, Object... objArr) {
if (!z) {
a(str, objArr);
}
return z;
}
public static boolean a(Object obj) {
return a(obj, "Null value not expected", new Object[0]);
}
public static boolean a(Object obj, String str, Object... objArr) {
return a(obj != null, str, objArr);
}
public static void a(String str, Object... objArr) {
a((Throwable) null, str, objArr);
}
}