Files
rr3-apk/decompiled-community/sources/com/ironsource/c4.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

62 lines
1.6 KiB
Java

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 + ')';
}
}