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,69 @@
package com.applovin.impl;
import com.applovin.impl.sdk.utils.JsonUtils;
import com.applovin.mediation.MaxAdFormat;
import com.facebook.internal.AnalyticsEvents;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes.dex */
public class z implements Comparable {
private final String a;
private final String b;
private final MaxAdFormat c;
private final a0 d;
private final List f;
public MaxAdFormat a() {
return this.c;
}
public String c() {
return this.a;
}
public String d() {
return this.b;
}
public String e() {
return "\n---------- " + this.b + " ----------\nIdentifier - " + this.a + "\nFormat - " + b();
}
public a0 f() {
return this.d;
}
public List g() {
return this.f;
}
public z(JSONObject jSONObject, Map map, com.applovin.impl.sdk.j jVar) {
this.a = JsonUtils.getString(jSONObject, "name", "");
this.b = JsonUtils.getString(jSONObject, "display_name", "");
this.c = MaxAdFormat.formatFromString(JsonUtils.getString(jSONObject, "format", null));
JSONArray jSONArray = JsonUtils.getJSONArray(jSONObject, "waterfalls", new JSONArray());
this.f = new ArrayList(jSONArray.length());
for (int i = 0; i < jSONArray.length(); i++) {
JSONObject jSONObject2 = JsonUtils.getJSONObject(jSONArray, i, (JSONObject) null);
if (jSONObject2 != null) {
this.f.add(new a0(jSONObject2, map, this.c, jVar));
}
}
this.d = this.f.isEmpty() ? null : (a0) this.f.get(0);
}
public String b() {
MaxAdFormat maxAdFormat = this.c;
return maxAdFormat != null ? maxAdFormat.getLabel() : AnalyticsEvents.PARAMETER_DIALOG_OUTCOME_VALUE_UNKNOWN;
}
@Override // java.lang.Comparable
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public int compareTo(z zVar) {
return this.b.compareToIgnoreCase(zVar.b);
}
}