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,39 @@
package com.tapjoy.internal;
import android.os.Handler;
import android.os.Looper;
import com.tapjoy.TJPlacementListener;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
/* loaded from: classes4.dex */
public final class e implements InvocationHandler {
public final TJPlacementListener a;
public final Thread b;
public final Looper c;
public e(TJPlacementListener tJPlacementListener, Thread thread, Looper looper) {
this.a = tJPlacementListener;
this.b = thread;
this.c = looper;
}
@Override // java.lang.reflect.InvocationHandler
public final Object invoke(Object obj, Method method, Object[] objArr) {
if (this.b == Thread.currentThread()) {
return method.invoke(this.a, objArr);
}
if (!method.getReturnType().equals(Void.TYPE)) {
throw new UnsupportedOperationException("method not return void: " + method.getName());
}
d dVar = new d(this, method, objArr);
if (this.c != null && new Handler(this.c).post(dVar)) {
return null;
}
Looper mainLooper = Looper.getMainLooper();
if (mainLooper == null || !new Handler(mainLooper).post(dVar)) {
return method.invoke(this.a, objArr);
}
return null;
}
}