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,68 @@
package com.applovin.impl;
import java.util.Collections;
import java.util.List;
/* loaded from: classes.dex */
public class jc implements Comparable {
private final String a;
private final String b;
private final boolean c;
private final ke d;
public String a() {
return this.b;
}
public String c() {
return this.a;
}
public ke d() {
return this.d;
}
public jc(String str, String str2, boolean z, ke keVar) {
this.a = str;
this.b = str2;
this.c = z;
this.d = keVar;
}
public List b() {
List l = this.d.l();
return (l == null || l.isEmpty()) ? Collections.singletonList(this.a) : l;
}
@Override // java.lang.Comparable
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public int compareTo(jc jcVar) {
return this.b.compareToIgnoreCase(jcVar.b);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
jc jcVar = (jc) obj;
String str = this.a;
if (str == null ? jcVar.a != null : !str.equals(jcVar.a)) {
return false;
}
String str2 = this.b;
if (str2 == null ? jcVar.b == null : str2.equals(jcVar.b)) {
return this.c == jcVar.c;
}
return false;
}
public int hashCode() {
String str = this.a;
int hashCode = (str != null ? str.hashCode() : 0) * 31;
String str2 = this.b;
return ((hashCode + (str2 != null ? str2.hashCode() : 0)) * 31) + (this.c ? 1 : 0);
}
}