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,47 @@
package com.fyber.inneractive.sdk.model.vast;
import com.fyber.inneractive.sdk.util.d1;
import java.util.ArrayList;
import java.util.Iterator;
import org.w3c.dom.Node;
/* loaded from: classes2.dex */
public final class t {
public String a;
public ArrayList b;
public static t a(Node node) {
e eVar;
t tVar = new t();
tVar.a = d1.b(node, "version");
ArrayList c = d1.c(node, "Ad");
if (!c.isEmpty()) {
tVar.b = new ArrayList();
Iterator it = c.iterator();
while (it.hasNext()) {
Node node2 = (Node) it.next();
if (node2 == null) {
eVar = null;
} else {
e eVar2 = new e();
eVar2.a = d1.b(node2, "id");
Node d = d1.d(node2, "Wrapper");
if (d != null) {
eVar2.b = x.c(d);
}
Node d2 = d1.d(node2, "InLine");
if (d2 != null) {
eVar2.c = o.c(d2);
}
eVar = eVar2;
}
tVar.b.add(eVar);
}
}
return tVar;
}
public final String toString() {
return new StringBuilder("Vast: version - " + this.a + "\nAds: ").toString();
}
}