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,61 @@
package androidx.work.impl;
import androidx.work.impl.model.WorkGenerationalId;
import androidx.work.impl.model.WorkSpec;
import androidx.work.impl.model.WorkSpecKt;
import java.util.List;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public interface StartStopTokens {
public static final Companion Companion = Companion.$$INSTANCE;
static StartStopTokens create() {
return Companion.create();
}
static StartStopTokens create(boolean z) {
return Companion.create(z);
}
boolean contains(WorkGenerationalId workGenerationalId);
StartStopToken remove(WorkGenerationalId workGenerationalId);
List<StartStopToken> remove(String str);
StartStopToken tokenFor(WorkGenerationalId workGenerationalId);
default StartStopToken tokenFor(WorkSpec spec) {
Intrinsics.checkNotNullParameter(spec, "spec");
return tokenFor(WorkSpecKt.generationalId(spec));
}
default StartStopToken remove(WorkSpec spec) {
Intrinsics.checkNotNullParameter(spec, "spec");
return remove(WorkSpecKt.generationalId(spec));
}
public static final class Companion {
static final /* synthetic */ Companion $$INSTANCE = new Companion();
public final StartStopTokens create() {
return create$default(this, false, 1, null);
}
private Companion() {
}
public static /* synthetic */ StartStopTokens create$default(Companion companion, boolean z, int i, Object obj) {
if ((i & 1) != 0) {
z = true;
}
return companion.create(z);
}
public final StartStopTokens create(boolean z) {
StartStopTokensImpl startStopTokensImpl = new StartStopTokensImpl();
return z ? new SynchronizedStartStopTokensImpl(startStopTokensImpl) : startStopTokensImpl;
}
}
}