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,101 @@
package org.apache.http.util;
@Deprecated
/* loaded from: classes5.dex */
public final class CharArrayBuffer {
public CharArrayBuffer(int i) {
throw new RuntimeException("Stub!");
}
public void append(char[] cArr, int i, int i2) {
throw new RuntimeException("Stub!");
}
public void append(String str) {
throw new RuntimeException("Stub!");
}
public void append(CharArrayBuffer charArrayBuffer, int i, int i2) {
throw new RuntimeException("Stub!");
}
public void append(CharArrayBuffer charArrayBuffer) {
throw new RuntimeException("Stub!");
}
public void append(char c) {
throw new RuntimeException("Stub!");
}
public void append(byte[] bArr, int i, int i2) {
throw new RuntimeException("Stub!");
}
public void append(ByteArrayBuffer byteArrayBuffer, int i, int i2) {
throw new RuntimeException("Stub!");
}
public void append(Object obj) {
throw new RuntimeException("Stub!");
}
public void clear() {
throw new RuntimeException("Stub!");
}
public char[] toCharArray() {
throw new RuntimeException("Stub!");
}
public char charAt(int i) {
throw new RuntimeException("Stub!");
}
public char[] buffer() {
throw new RuntimeException("Stub!");
}
public int capacity() {
throw new RuntimeException("Stub!");
}
public int length() {
throw new RuntimeException("Stub!");
}
public void ensureCapacity(int i) {
throw new RuntimeException("Stub!");
}
public void setLength(int i) {
throw new RuntimeException("Stub!");
}
public boolean isEmpty() {
throw new RuntimeException("Stub!");
}
public boolean isFull() {
throw new RuntimeException("Stub!");
}
public int indexOf(int i, int i2, int i3) {
throw new RuntimeException("Stub!");
}
public int indexOf(int i) {
throw new RuntimeException("Stub!");
}
public String substring(int i, int i2) {
throw new RuntimeException("Stub!");
}
public String substringTrimmed(int i, int i2) {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
}