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,89 @@
package androidx.lifecycle;
import androidx.lifecycle.Lifecycle;
import kotlin.ResultKt;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt;
import kotlin.coroutines.jvm.internal.DebugMetadata;
import kotlin.coroutines.jvm.internal.SuspendLambda;
import kotlin.jvm.functions.Function2;
import kotlinx.coroutines.BuildersKt;
import kotlinx.coroutines.CoroutineScope;
import kotlinx.coroutines.Job;
@DebugMetadata(c = "androidx.lifecycle.PausingDispatcherKt$whenStateAtLeast$2", f = "PausingDispatcher.kt", l = {203}, m = "invokeSuspend")
/* loaded from: classes.dex */
public final class PausingDispatcherKt$whenStateAtLeast$2 extends SuspendLambda implements Function2 {
final /* synthetic */ Function2 $block;
final /* synthetic */ Lifecycle.State $minState;
final /* synthetic */ Lifecycle $this_whenStateAtLeast;
private /* synthetic */ Object L$0;
int label;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public PausingDispatcherKt$whenStateAtLeast$2(Lifecycle lifecycle, Lifecycle.State state, Function2 function2, Continuation continuation) {
super(2, continuation);
this.$this_whenStateAtLeast = lifecycle;
this.$minState = state;
this.$block = function2;
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Continuation create(Object obj, Continuation continuation) {
PausingDispatcherKt$whenStateAtLeast$2 pausingDispatcherKt$whenStateAtLeast$2 = new PausingDispatcherKt$whenStateAtLeast$2(this.$this_whenStateAtLeast, this.$minState, this.$block, continuation);
pausingDispatcherKt$whenStateAtLeast$2.L$0 = obj;
return pausingDispatcherKt$whenStateAtLeast$2;
}
@Override // kotlin.jvm.functions.Function2
public final Object invoke(CoroutineScope coroutineScope, Continuation continuation) {
return ((PausingDispatcherKt$whenStateAtLeast$2) create(coroutineScope, continuation)).invokeSuspend(Unit.INSTANCE);
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Object invokeSuspend(Object obj) {
Object coroutine_suspended;
LifecycleController lifecycleController;
coroutine_suspended = IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED();
int i = this.label;
if (i == 0) {
ResultKt.throwOnFailure(obj);
Job job = (Job) ((CoroutineScope) this.L$0).getCoroutineContext().get(Job.Key);
if (job == null) {
throw new IllegalStateException("when[State] methods should have a parent job".toString());
}
PausingDispatcher pausingDispatcher = new PausingDispatcher();
LifecycleController lifecycleController2 = new LifecycleController(this.$this_whenStateAtLeast, this.$minState, pausingDispatcher.dispatchQueue, job);
try {
Function2 function2 = this.$block;
this.L$0 = lifecycleController2;
this.label = 1;
obj = BuildersKt.withContext(pausingDispatcher, function2, this);
if (obj == coroutine_suspended) {
return coroutine_suspended;
}
lifecycleController = lifecycleController2;
} catch (Throwable th) {
th = th;
lifecycleController = lifecycleController2;
lifecycleController.finish();
throw th;
}
} else {
if (i != 1) {
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
}
lifecycleController = (LifecycleController) this.L$0;
try {
ResultKt.throwOnFailure(obj);
} catch (Throwable th2) {
th = th2;
lifecycleController.finish();
throw th;
}
}
lifecycleController.finish();
return obj;
}
}