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,52 @@
package com.mbridge.msdk.playercommon.exoplayer2;
import com.mbridge.msdk.playercommon.exoplayer2.util.Assertions;
import java.io.IOException;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/* loaded from: classes4.dex */
public final class ExoPlaybackException extends Exception {
public static final int TYPE_RENDERER = 1;
public static final int TYPE_SOURCE = 0;
public static final int TYPE_UNEXPECTED = 2;
public final int rendererIndex;
public final int type;
@Retention(RetentionPolicy.SOURCE)
public @interface Type {
}
public static ExoPlaybackException createForRenderer(Exception exc, int i) {
return new ExoPlaybackException(1, null, exc, i);
}
public static ExoPlaybackException createForSource(IOException iOException) {
return new ExoPlaybackException(0, null, iOException, -1);
}
public static ExoPlaybackException createForUnexpected(RuntimeException runtimeException) {
return new ExoPlaybackException(2, null, runtimeException, -1);
}
private ExoPlaybackException(int i, String str, Throwable th, int i2) {
super(str, th);
this.type = i;
this.rendererIndex = i2;
}
public final IOException getSourceException() {
Assertions.checkState(this.type == 0);
return (IOException) getCause();
}
public final Exception getRendererException() {
Assertions.checkState(this.type == 1);
return (Exception) getCause();
}
public final RuntimeException getUnexpectedException() {
Assertions.checkState(this.type == 2);
return (RuntimeException) getCause();
}
}