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,59 @@
package com.applovin.impl;
import java.util.List;
import java.util.Map;
/* loaded from: classes.dex */
public class w0 {
private final Map a;
private final List b;
public Map a() {
return this.a;
}
public List b() {
return this.b;
}
public String toString() {
return "AppAdsTxt(domainEntries=" + a() + ", invalidEntries=" + b() + ")";
}
public w0(Map map, List list) {
this.a = map;
this.b = list;
}
public boolean a(Object obj) {
return obj instanceof w0;
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof w0)) {
return false;
}
w0 w0Var = (w0) obj;
if (!w0Var.a(this)) {
return false;
}
Map a = a();
Map a2 = w0Var.a();
if (a != null ? !a.equals(a2) : a2 != null) {
return false;
}
List b = b();
List b2 = w0Var.b();
return b != null ? b.equals(b2) : b2 == null;
}
public int hashCode() {
Map a = a();
int hashCode = a == null ? 43 : a.hashCode();
List b = b();
return ((hashCode + 59) * 59) + (b != null ? b.hashCode() : 43);
}
}