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,30 @@
package kotlinx.coroutines;
import kotlin.ExceptionsKt__ExceptionsKt;
import kotlin.coroutines.CoroutineContext;
import kotlinx.coroutines.internal.CoroutineExceptionHandlerImpl_commonKt;
/* loaded from: classes5.dex */
public abstract class CoroutineExceptionHandlerKt {
public static final void handleCoroutineException(CoroutineContext coroutineContext, Throwable th) {
try {
CoroutineExceptionHandler coroutineExceptionHandler = (CoroutineExceptionHandler) coroutineContext.get(CoroutineExceptionHandler.Key);
if (coroutineExceptionHandler != null) {
coroutineExceptionHandler.handleException(coroutineContext, th);
} else {
CoroutineExceptionHandlerImpl_commonKt.handleUncaughtCoroutineException(coroutineContext, th);
}
} catch (Throwable th2) {
CoroutineExceptionHandlerImpl_commonKt.handleUncaughtCoroutineException(coroutineContext, handlerException(th, th2));
}
}
public static final Throwable handlerException(Throwable th, Throwable th2) {
if (th == th2) {
return th;
}
RuntimeException runtimeException = new RuntimeException("Exception while trying to handle coroutine exception", th2);
ExceptionsKt__ExceptionsKt.addSuppressed(runtimeException, th);
return runtimeException;
}
}