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,17 @@
package com.fyber.inneractive.sdk.config.remote;
/* loaded from: classes2.dex */
public final class a implements c {
public String a;
public String b;
public e c;
public i d;
public b e;
public j f;
public String g;
@Override // com.fyber.inneractive.sdk.config.remote.c
public final String a() {
return this.g;
}
}

View File

@@ -0,0 +1,30 @@
package com.fyber.inneractive.sdk.config.remote;
import com.fyber.inneractive.sdk.config.enums.UnitDisplayType;
import com.mbridge.msdk.mbsignalcommon.commonwebview.ToolBar;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class b {
public UnitDisplayType a;
public Boolean b;
public Integer c;
public Integer d;
public static b a(JSONObject jSONObject) {
if (jSONObject == null) {
return null;
}
b bVar = new b();
Integer valueOf = Integer.valueOf(jSONObject.optInt("hide", Integer.MIN_VALUE));
Integer valueOf2 = Integer.valueOf(jSONObject.optInt(ToolBar.REFRESH, Integer.MIN_VALUE));
bVar.a = UnitDisplayType.fromValue(jSONObject.optString("unitDisplayType"));
bVar.b = jSONObject.has("close") ? Boolean.valueOf(jSONObject.optBoolean("close", true)) : null;
if (valueOf.intValue() == Integer.MIN_VALUE) {
valueOf = null;
}
bVar.d = valueOf;
bVar.c = valueOf2.intValue() != Integer.MIN_VALUE ? valueOf2 : null;
return bVar;
}
}

View File

@@ -0,0 +1,6 @@
package com.fyber.inneractive.sdk.config.remote;
/* loaded from: classes2.dex */
public interface c {
String a();
}

View File

@@ -0,0 +1,25 @@
package com.fyber.inneractive.sdk.config.remote;
import java.util.List;
/* loaded from: classes2.dex */
public final class d {
public a a;
public List<g> b = null;
public String c;
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Removed duplicated region for block: B:49:0x01a8 */
/* JADX WARN: Removed duplicated region for block: B:52:0x01ab A[SYNTHETIC] */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public static com.fyber.inneractive.sdk.config.remote.d a(org.json.JSONObject r20) throws com.fyber.inneractive.sdk.external.InvalidAppIdException {
/*
Method dump skipped, instructions count: 442
To view this dump add '--comments-level debug' option
*/
throw new UnsupportedOperationException("Method not decompiled: com.fyber.inneractive.sdk.config.remote.d.a(org.json.JSONObject):com.fyber.inneractive.sdk.config.remote.d");
}
}

View File

@@ -0,0 +1,34 @@
package com.fyber.inneractive.sdk.config.remote;
import android.text.TextUtils;
import com.fyber.inneractive.sdk.config.enums.Track;
import java.util.LinkedHashSet;
import java.util.Set;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class e {
public Set<Track> a = null;
public static e a(JSONObject jSONObject) {
Track fromValue;
e eVar = null;
if (jSONObject == null) {
return null;
}
JSONArray optJSONArray = jSONObject.optJSONArray("track");
if (optJSONArray != null) {
eVar = new e();
LinkedHashSet linkedHashSet = new LinkedHashSet();
for (int i = 0; i < optJSONArray.length(); i++) {
String optString = optJSONArray.optString(i);
if (!TextUtils.isEmpty(optString) && (fromValue = Track.fromValue(optString)) != null) {
linkedHashSet.add(fromValue);
}
}
eVar.a = linkedHashSet;
}
return eVar;
}
}

View File

@@ -0,0 +1,8 @@
package com.fyber.inneractive.sdk.config.remote;
import com.fyber.inneractive.sdk.config.enums.UnitDisplayType;
/* loaded from: classes2.dex */
public final class f {
public UnitDisplayType a;
}

View File

@@ -0,0 +1,19 @@
package com.fyber.inneractive.sdk.config.remote;
import java.util.List;
/* loaded from: classes2.dex */
public final class g implements c {
public String a;
public String b;
public b c;
public e d;
public i e;
public j f;
public List<h> g = null;
@Override // com.fyber.inneractive.sdk.config.remote.c
public final String a() {
return this.b;
}
}

View File

@@ -0,0 +1,12 @@
package com.fyber.inneractive.sdk.config.remote;
/* loaded from: classes2.dex */
public final class h {
public String a;
public String b;
public b c;
public e d;
public f e;
public i f;
public j g;
}

View File

@@ -0,0 +1,64 @@
package com.fyber.inneractive.sdk.config.remote;
import com.fyber.inneractive.sdk.config.enums.Orientation;
import com.fyber.inneractive.sdk.config.enums.Skip;
import com.fyber.inneractive.sdk.config.enums.TapAction;
import com.fyber.inneractive.sdk.config.enums.UnitDisplayType;
import java.util.ArrayList;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class i {
public Boolean a;
public Integer b;
public Integer c;
public Skip d;
public Boolean e;
public TapAction f;
public Orientation g;
public Integer h;
public Integer i;
public UnitDisplayType j;
public final ArrayList k = new ArrayList();
public static i a(JSONObject jSONObject) {
if (jSONObject == null) {
return null;
}
i iVar = new i();
Integer valueOf = Integer.valueOf(jSONObject.optInt("maxBitrate", Integer.MIN_VALUE));
Integer valueOf2 = Integer.valueOf(jSONObject.optInt("minBitrate", Integer.MIN_VALUE));
Integer valueOf3 = Integer.valueOf(jSONObject.optInt("pivotBitrate", Integer.MIN_VALUE));
Integer valueOf4 = Integer.valueOf(jSONObject.optInt("padding", Integer.MIN_VALUE));
if (valueOf.intValue() == Integer.MIN_VALUE) {
valueOf = null;
}
iVar.b = valueOf;
if (valueOf2.intValue() == Integer.MIN_VALUE) {
valueOf2 = null;
}
iVar.c = valueOf2;
iVar.d = Skip.fromValue(Integer.valueOf(jSONObject.optInt("skip", Integer.MIN_VALUE)));
iVar.e = jSONObject.has("muted") ? Boolean.valueOf(jSONObject.optBoolean("muted", true)) : null;
iVar.a = jSONObject.has("autoPlay") ? Boolean.valueOf(jSONObject.optBoolean("autoPlay", true)) : null;
iVar.g = Orientation.fromValue(jSONObject.optString("orientation"));
iVar.f = TapAction.fromValue(jSONObject.optString("tap"));
if (valueOf3.intValue() == Integer.MIN_VALUE) {
valueOf3 = null;
}
iVar.h = valueOf3;
iVar.i = valueOf4.intValue() != Integer.MIN_VALUE ? valueOf4 : null;
iVar.j = UnitDisplayType.fromValue(jSONObject.optString("unitDisplayType"));
JSONArray optJSONArray = jSONObject.optJSONArray("filterApi");
if (optJSONArray != null) {
for (int i = 0; i < optJSONArray.length(); i++) {
int optInt = optJSONArray.optInt(i, Integer.MIN_VALUE);
if (optInt != Integer.MIN_VALUE) {
iVar.k.add(Integer.valueOf(optInt));
}
}
}
return iVar;
}
}

View File

@@ -0,0 +1,45 @@
package com.fyber.inneractive.sdk.config.remote;
import android.text.TextUtils;
import com.fyber.inneractive.sdk.config.enums.Vendor;
import java.util.LinkedHashSet;
import java.util.Set;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class j {
public Integer a;
public Integer b;
public Set<Vendor> c = null;
public static j a(JSONObject jSONObject) {
Vendor fromValue;
if (jSONObject == null) {
return null;
}
Integer valueOf = Integer.valueOf(jSONObject.optInt("pausePct", Integer.MIN_VALUE));
Integer valueOf2 = Integer.valueOf(jSONObject.optInt("playPct", Integer.MIN_VALUE));
j jVar = new j();
if (valueOf.intValue() == Integer.MIN_VALUE) {
valueOf = null;
}
jVar.a = valueOf;
if (valueOf2.intValue() == Integer.MIN_VALUE) {
valueOf2 = null;
}
jVar.b = valueOf2;
JSONArray optJSONArray = jSONObject.optJSONArray("vendor");
if (optJSONArray != null) {
LinkedHashSet linkedHashSet = new LinkedHashSet();
for (int i = 0; i < optJSONArray.length(); i++) {
String optString = optJSONArray.optString(i, null);
if (!TextUtils.isEmpty(optString) && (fromValue = Vendor.fromValue(optString)) != null) {
linkedHashSet.add(fromValue);
}
}
jVar.c = linkedHashSet;
}
return jVar;
}
}