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,41 @@
package com.mbridge.msdk.tracker.network;
import com.mbridge.msdk.tracker.network.b;
/* loaded from: classes4.dex */
public final class w<T> {
public final T a;
public final b.a b;
public final ad c;
public boolean d;
public interface a {
void a(ad adVar);
}
public interface b<T> {
void a(T t);
}
public static <T> w<T> a(T t, b.a aVar) {
return new w<>(t, aVar);
}
public static <T> w<T> a(ad adVar) {
return new w<>(adVar);
}
private w(T t, b.a aVar) {
this.d = false;
this.a = t;
this.b = aVar;
this.c = null;
}
private w(ad adVar) {
this.d = false;
this.a = null;
this.b = null;
this.c = adVar;
}
}