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,114 @@
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 Reader {
public static final int READ_DONE = Integer.MAX_VALUE;
public static final int TAG_UNKNOWN = 0;
int getFieldNumber() throws IOException;
int getTag();
<T> void mergeGroupField(T t, Schema schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> void mergeMessageField(T t, Schema schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
boolean readBool() throws IOException;
void readBoolList(List<Boolean> list) throws IOException;
ByteString readBytes() throws IOException;
void readBytesList(List<ByteString> list) throws IOException;
double readDouble() throws IOException;
void readDoubleList(List<Double> list) throws IOException;
int readEnum() throws IOException;
void readEnumList(List<Integer> list) throws IOException;
int readFixed32() throws IOException;
void readFixed32List(List<Integer> list) throws IOException;
long readFixed64() throws IOException;
void readFixed64List(List<Long> list) throws IOException;
float readFloat() throws IOException;
void readFloatList(List<Float> list) throws IOException;
@Deprecated
<T> T readGroup(Class<T> cls, ExtensionRegistryLite extensionRegistryLite) throws IOException;
@Deprecated
<T> T readGroupBySchemaWithCheck(Schema schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
@Deprecated
<T> void readGroupList(List<T> list, Schema schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
@Deprecated
<T> void readGroupList(List<T> list, Class<T> cls, ExtensionRegistryLite extensionRegistryLite) throws IOException;
int readInt32() throws IOException;
void readInt32List(List<Integer> list) throws IOException;
long readInt64() throws IOException;
void readInt64List(List<Long> list) throws IOException;
<K, V> void readMap(Map<K, V> map, MapEntryLite.Metadata metadata, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> T readMessage(Class<T> cls, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> T readMessageBySchemaWithCheck(Schema schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> void readMessageList(List<T> list, Schema schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> void readMessageList(List<T> list, Class<T> cls, ExtensionRegistryLite extensionRegistryLite) throws IOException;
int readSFixed32() throws IOException;
void readSFixed32List(List<Integer> list) throws IOException;
long readSFixed64() throws IOException;
void readSFixed64List(List<Long> list) throws IOException;
int readSInt32() throws IOException;
void readSInt32List(List<Integer> list) throws IOException;
long readSInt64() throws IOException;
void readSInt64List(List<Long> list) throws IOException;
String readString() throws IOException;
void readStringList(List<String> list) throws IOException;
void readStringListRequireUtf8(List<String> list) throws IOException;
String readStringRequireUtf8() throws IOException;
int readUInt32() throws IOException;
void readUInt32List(List<Integer> list) throws IOException;
long readUInt64() throws IOException;
void readUInt64List(List<Long> list) throws IOException;
boolean shouldDiscardUnknownFields();
boolean skipField() throws IOException;
}