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,82 @@
package com.ironsource;
import com.google.android.gms.drive.DriveFile;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* loaded from: classes2.dex */
public final class mn {
private final boolean a;
private final int b;
/* JADX WARN: Multi-variable type inference failed */
public mn() {
this(false, 0 == true ? 1 : 0, 3, null);
}
public mn(boolean z, int i) {
this.a = z;
this.b = i;
}
public /* synthetic */ mn(boolean z, int i, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this((i2 & 1) != 0 ? false : z, (i2 & 2) != 0 ? DriveFile.MODE_READ_WRITE : i);
}
public static /* synthetic */ mn a(mn mnVar, boolean z, int i, int i2, Object obj) {
if ((i2 & 1) != 0) {
z = mnVar.a;
}
if ((i2 & 2) != 0) {
i = mnVar.b;
}
return mnVar.a(z, i);
}
public final mn a(boolean z, int i) {
return new mn(z, i);
}
public final boolean a() {
return this.a;
}
public final int b() {
return this.b;
}
public final int c() {
return this.b;
}
public final boolean d() {
return this.a;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof mn)) {
return false;
}
mn mnVar = (mn) obj;
return this.a == mnVar.a && this.b == mnVar.b;
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v4 */
/* JADX WARN: Type inference failed for: r0v5 */
public int hashCode() {
boolean z = this.a;
?? r0 = z;
if (z) {
r0 = 1;
}
return (r0 * 31) + Integer.hashCode(this.b);
}
public String toString() {
return "OpenUrlConfigurations(isImmersive=" + this.a + ", flags=" + this.b + ')';
}
}