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,171 @@
package com.ironsource;
import java.util.Arrays;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class ao {
private boolean a;
private String b;
private boolean c;
private int d;
private int[] e;
private int[] f;
public ao() {
this(false, null, false, 0, null, null, 63, null);
}
public ao(boolean z, String pixelEventsUrl, boolean z2, int i, int[] iArr, int[] iArr2) {
Intrinsics.checkNotNullParameter(pixelEventsUrl, "pixelEventsUrl");
this.a = z;
this.b = pixelEventsUrl;
this.c = z2;
this.d = i;
this.e = iArr;
this.f = iArr2;
}
public /* synthetic */ ao(boolean z, String str, boolean z2, int i, int[] iArr, int[] iArr2, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this((i2 & 1) != 0 ? true : z, (i2 & 2) != 0 ? bo.a : str, (i2 & 4) != 0 ? false : z2, (i2 & 8) != 0 ? -1 : i, (i2 & 16) != 0 ? null : iArr, (i2 & 32) != 0 ? null : iArr2);
}
public static /* synthetic */ ao a(ao aoVar, boolean z, String str, boolean z2, int i, int[] iArr, int[] iArr2, int i2, Object obj) {
if ((i2 & 1) != 0) {
z = aoVar.a;
}
if ((i2 & 2) != 0) {
str = aoVar.b;
}
String str2 = str;
if ((i2 & 4) != 0) {
z2 = aoVar.c;
}
boolean z3 = z2;
if ((i2 & 8) != 0) {
i = aoVar.d;
}
int i3 = i;
if ((i2 & 16) != 0) {
iArr = aoVar.e;
}
int[] iArr3 = iArr;
if ((i2 & 32) != 0) {
iArr2 = aoVar.f;
}
return aoVar.a(z, str2, z3, i3, iArr3, iArr2);
}
public final ao a(boolean z, String pixelEventsUrl, boolean z2, int i, int[] iArr, int[] iArr2) {
Intrinsics.checkNotNullParameter(pixelEventsUrl, "pixelEventsUrl");
return new ao(z, pixelEventsUrl, z2, i, iArr, iArr2);
}
public final void a(int i) {
this.d = i;
}
public final void a(String str) {
Intrinsics.checkNotNullParameter(str, "<set-?>");
this.b = str;
}
public final void a(boolean z) {
this.c = z;
}
public final void a(int[] iArr) {
this.f = iArr;
}
public final boolean a() {
return this.a;
}
public final String b() {
return this.b;
}
public final void b(boolean z) {
this.a = z;
}
public final void b(int[] iArr) {
this.e = iArr;
}
public final boolean c() {
return this.c;
}
public final int d() {
return this.d;
}
public final int[] e() {
return this.e;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ao)) {
return false;
}
ao aoVar = (ao) obj;
return this.a == aoVar.a && Intrinsics.areEqual(this.b, aoVar.b) && this.c == aoVar.c && this.d == aoVar.d && Intrinsics.areEqual(this.e, aoVar.e) && Intrinsics.areEqual(this.f, aoVar.f);
}
public final int[] f() {
return this.f;
}
public final boolean g() {
return this.c;
}
public final int h() {
return this.d;
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v12 */
/* JADX WARN: Type inference failed for: r0v13 */
public int hashCode() {
boolean z = this.a;
?? r0 = z;
if (z) {
r0 = 1;
}
int hashCode = ((r0 * 31) + this.b.hashCode()) * 31;
boolean z2 = this.c;
int hashCode2 = (((hashCode + (z2 ? 1 : z2 ? 1 : 0)) * 31) + Integer.hashCode(this.d)) * 31;
int[] iArr = this.e;
int hashCode3 = (hashCode2 + (iArr == null ? 0 : Arrays.hashCode(iArr))) * 31;
int[] iArr2 = this.f;
return hashCode3 + (iArr2 != null ? Arrays.hashCode(iArr2) : 0);
}
public final boolean i() {
return this.a;
}
public final String j() {
return this.b;
}
public final int[] k() {
return this.f;
}
public final int[] l() {
return this.e;
}
public String toString() {
return "PixelSettings(pixelEventsEnabled=" + this.a + ", pixelEventsUrl=" + this.b + ", pixelEventsCompression=" + this.c + ", pixelEventsCompressionLevel=" + this.d + ", pixelOptOut=" + Arrays.toString(this.e) + ", pixelOptIn=" + Arrays.toString(this.f) + ')';
}
}