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,111 @@
package com.google.protobuf;
import com.google.protobuf.MapEntryLite;
import java.io.IOException;
import java.util.List;
import java.util.Map;
/* loaded from: classes3.dex */
public interface Writer {
public enum FieldOrder {
ASCENDING,
DESCENDING
}
FieldOrder fieldOrder();
void writeBool(int i, boolean z) throws IOException;
void writeBoolList(int i, List<Boolean> list, boolean z) throws IOException;
void writeBytes(int i, ByteString byteString) throws IOException;
void writeBytesList(int i, List<ByteString> list) throws IOException;
void writeDouble(int i, double d) throws IOException;
void writeDoubleList(int i, List<Double> list, boolean z) throws IOException;
@Deprecated
void writeEndGroup(int i) throws IOException;
void writeEnum(int i, int i2) throws IOException;
void writeEnumList(int i, List<Integer> list, boolean z) throws IOException;
void writeFixed32(int i, int i2) throws IOException;
void writeFixed32List(int i, List<Integer> list, boolean z) throws IOException;
void writeFixed64(int i, long j) throws IOException;
void writeFixed64List(int i, List<Long> list, boolean z) throws IOException;
void writeFloat(int i, float f) throws IOException;
void writeFloatList(int i, List<Float> list, boolean z) throws IOException;
@Deprecated
void writeGroup(int i, Object obj) throws IOException;
@Deprecated
void writeGroup(int i, Object obj, Schema schema) throws IOException;
@Deprecated
void writeGroupList(int i, List<?> list) throws IOException;
@Deprecated
void writeGroupList(int i, List<?> list, Schema schema) throws IOException;
void writeInt32(int i, int i2) throws IOException;
void writeInt32List(int i, List<Integer> list, boolean z) throws IOException;
void writeInt64(int i, long j) throws IOException;
void writeInt64List(int i, List<Long> list, boolean z) throws IOException;
<K, V> void writeMap(int i, MapEntryLite.Metadata metadata, Map<K, V> map) throws IOException;
void writeMessage(int i, Object obj) throws IOException;
void writeMessage(int i, Object obj, Schema schema) throws IOException;
void writeMessageList(int i, List<?> list) throws IOException;
void writeMessageList(int i, List<?> list, Schema schema) throws IOException;
void writeMessageSetItem(int i, Object obj) throws IOException;
void writeSFixed32(int i, int i2) throws IOException;
void writeSFixed32List(int i, List<Integer> list, boolean z) throws IOException;
void writeSFixed64(int i, long j) throws IOException;
void writeSFixed64List(int i, List<Long> list, boolean z) throws IOException;
void writeSInt32(int i, int i2) throws IOException;
void writeSInt32List(int i, List<Integer> list, boolean z) throws IOException;
void writeSInt64(int i, long j) throws IOException;
void writeSInt64List(int i, List<Long> list, boolean z) throws IOException;
@Deprecated
void writeStartGroup(int i) throws IOException;
void writeString(int i, String str) throws IOException;
void writeStringList(int i, List<String> list) throws IOException;
void writeUInt32(int i, int i2) throws IOException;
void writeUInt32List(int i, List<Integer> list, boolean z) throws IOException;
void writeUInt64(int i, long j) throws IOException;
void writeUInt64List(int i, List<Long> list, boolean z) throws IOException;
}