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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
package androidx.work.impl.model;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class WorkGenerationalId {
private final int generation;
private final String workSpecId;
public static /* synthetic */ WorkGenerationalId copy$default(WorkGenerationalId workGenerationalId, String str, int i, int i2, Object obj) {
if ((i2 & 1) != 0) {
str = workGenerationalId.workSpecId;
}
if ((i2 & 2) != 0) {
i = workGenerationalId.generation;
}
return workGenerationalId.copy(str, i);
}
public final String component1() {
return this.workSpecId;
}
public final int component2() {
return this.generation;
}
public final WorkGenerationalId copy(String workSpecId, int i) {
Intrinsics.checkNotNullParameter(workSpecId, "workSpecId");
return new WorkGenerationalId(workSpecId, i);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof WorkGenerationalId)) {
return false;
}
WorkGenerationalId workGenerationalId = (WorkGenerationalId) obj;
return Intrinsics.areEqual(this.workSpecId, workGenerationalId.workSpecId) && this.generation == workGenerationalId.generation;
}
public final int getGeneration() {
return this.generation;
}
public final String getWorkSpecId() {
return this.workSpecId;
}
public int hashCode() {
return (this.workSpecId.hashCode() * 31) + Integer.hashCode(this.generation);
}
public String toString() {
return "WorkGenerationalId(workSpecId=" + this.workSpecId + ", generation=" + this.generation + ')';
}
public WorkGenerationalId(String workSpecId, int i) {
Intrinsics.checkNotNullParameter(workSpecId, "workSpecId");
this.workSpecId = workSpecId;
this.generation = i;
}
}