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,58 @@
package com.mbridge.msdk.thrid.okio;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.channels.WritableByteChannel;
import java.nio.charset.Charset;
/* loaded from: classes4.dex */
public interface BufferedSink extends Sink, WritableByteChannel {
Buffer buffer();
BufferedSink emit() throws IOException;
BufferedSink emitCompleteSegments() throws IOException;
@Override // com.mbridge.msdk.thrid.okio.Sink, java.io.Flushable
void flush() throws IOException;
OutputStream outputStream();
BufferedSink write(ByteString byteString) throws IOException;
BufferedSink write(Source source, long j) throws IOException;
BufferedSink write(byte[] bArr) throws IOException;
BufferedSink write(byte[] bArr, int i, int i2) throws IOException;
long writeAll(Source source) throws IOException;
BufferedSink writeByte(int i) throws IOException;
BufferedSink writeDecimalLong(long j) throws IOException;
BufferedSink writeHexadecimalUnsignedLong(long j) throws IOException;
BufferedSink writeInt(int i) throws IOException;
BufferedSink writeIntLe(int i) throws IOException;
BufferedSink writeLong(long j) throws IOException;
BufferedSink writeLongLe(long j) throws IOException;
BufferedSink writeShort(int i) throws IOException;
BufferedSink writeShortLe(int i) throws IOException;
BufferedSink writeString(String str, int i, int i2, Charset charset) throws IOException;
BufferedSink writeString(String str, Charset charset) throws IOException;
BufferedSink writeUtf8(String str) throws IOException;
BufferedSink writeUtf8(String str, int i, int i2) throws IOException;
BufferedSink writeUtf8CodePoint(int i) throws IOException;
}