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,61 @@
package com.ironsource;
import java.util.Map;
import kotlin.collections.MapsKt__MapsKt;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class c4 {
private final Map<String, String> a;
/* JADX WARN: Multi-variable type inference failed */
public c4() {
this(null, 1, 0 == true ? 1 : 0);
}
public c4(Map<String, String> mediationTypes) {
Intrinsics.checkNotNullParameter(mediationTypes, "mediationTypes");
this.a = mediationTypes;
}
public /* synthetic */ c4(Map map, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? MapsKt__MapsKt.emptyMap() : map);
}
/* JADX WARN: Multi-variable type inference failed */
public static /* synthetic */ c4 a(c4 c4Var, Map map, int i, Object obj) {
if ((i & 1) != 0) {
map = c4Var.a;
}
return c4Var.a(map);
}
public final c4 a(Map<String, String> mediationTypes) {
Intrinsics.checkNotNullParameter(mediationTypes, "mediationTypes");
return new c4(mediationTypes);
}
public final Map<String, String> a() {
return this.a;
}
public final Map<String, String> b() {
return this.a;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof c4) && Intrinsics.areEqual(this.a, ((c4) obj).a);
}
public int hashCode() {
return this.a.hashCode();
}
public String toString() {
return "ApplicationExternalSettings(mediationTypes=" + this.a + ')';
}
}