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,72 @@
package com.facebook.internal.gatekeeper;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class GateKeeper {
private final String name;
private final boolean value;
public static /* synthetic */ GateKeeper copy$default(GateKeeper gateKeeper, String str, boolean z, int i, Object obj) {
if ((i & 1) != 0) {
str = gateKeeper.name;
}
if ((i & 2) != 0) {
z = gateKeeper.value;
}
return gateKeeper.copy(str, z);
}
public final String component1() {
return this.name;
}
public final boolean component2() {
return this.value;
}
public final GateKeeper copy(String name, boolean z) {
Intrinsics.checkNotNullParameter(name, "name");
return new GateKeeper(name, z);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof GateKeeper)) {
return false;
}
GateKeeper gateKeeper = (GateKeeper) obj;
return Intrinsics.areEqual(this.name, gateKeeper.name) && this.value == gateKeeper.value;
}
public final String getName() {
return this.name;
}
public final boolean getValue() {
return this.value;
}
/* JADX WARN: Multi-variable type inference failed */
public int hashCode() {
int hashCode = this.name.hashCode() * 31;
boolean z = this.value;
int i = z;
if (z != 0) {
i = 1;
}
return hashCode + i;
}
public String toString() {
return "GateKeeper(name=" + this.name + ", value=" + this.value + ')';
}
public GateKeeper(String name, boolean z) {
Intrinsics.checkNotNullParameter(name, "name");
this.name = name;
this.value = z;
}
}