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,32 @@
package com.fyber.inneractive.sdk.click;
import com.fyber.inneractive.sdk.click.l;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class b {
public final l.d a;
public final Throwable b;
public final String c;
public final String d;
public long e;
public final ArrayList f = new ArrayList();
public b(String str, l.d dVar, String str2, Throwable th) {
this.d = str;
this.a = dVar;
this.c = str2;
this.b = th;
}
public final String toString() {
l.d dVar = this.a;
if (dVar != l.d.FAILED) {
return String.format("Open result: Success! target: %s method: %s", dVar, this.c);
}
Object[] objArr = new Object[1];
Throwable th = this.b;
objArr[0] = th != null ? th.getMessage() : "none";
return String.format("Open result: Failed! error: %s", objArr);
}
}