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,37 @@
package androidx.lifecycle;
import kotlin.coroutines.CoroutineContext;
import kotlin.jvm.functions.Function2;
import kotlin.jvm.internal.Intrinsics;
import kotlinx.coroutines.BuildersKt__Builders_commonKt;
import kotlinx.coroutines.CoroutineScope;
import kotlinx.coroutines.Job;
/* loaded from: classes.dex */
public abstract class LifecycleCoroutineScope implements CoroutineScope {
@Override // kotlinx.coroutines.CoroutineScope
public abstract /* synthetic */ CoroutineContext getCoroutineContext();
public abstract Lifecycle getLifecycle$lifecycle_common();
public final Job launchWhenCreated(Function2 block) {
Job launch$default;
Intrinsics.checkNotNullParameter(block, "block");
launch$default = BuildersKt__Builders_commonKt.launch$default(this, null, null, new LifecycleCoroutineScope$launchWhenCreated$1(this, block, null), 3, null);
return launch$default;
}
public final Job launchWhenStarted(Function2 block) {
Job launch$default;
Intrinsics.checkNotNullParameter(block, "block");
launch$default = BuildersKt__Builders_commonKt.launch$default(this, null, null, new LifecycleCoroutineScope$launchWhenStarted$1(this, block, null), 3, null);
return launch$default;
}
public final Job launchWhenResumed(Function2 block) {
Job launch$default;
Intrinsics.checkNotNullParameter(block, "block");
launch$default = BuildersKt__Builders_commonKt.launch$default(this, null, null, new LifecycleCoroutineScope$launchWhenResumed$1(this, block, null), 3, null);
return launch$default;
}
}