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 org.apache.http.impl.conn;
import java.io.IOException;
import org.apache.http.HttpHost;
import org.apache.http.conn.ClientConnectionOperator;
import org.apache.http.conn.OperatedClientConnection;
import org.apache.http.conn.routing.HttpRoute;
import org.apache.http.conn.routing.RouteTracker;
import org.apache.http.params.HttpParams;
import org.apache.http.protocol.HttpContext;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractPoolEntry {
protected final ClientConnectionOperator connOperator;
protected final OperatedClientConnection connection;
protected volatile HttpRoute route;
protected volatile Object state;
protected volatile RouteTracker tracker;
public AbstractPoolEntry(ClientConnectionOperator clientConnectionOperator, HttpRoute httpRoute) {
throw new RuntimeException("Stub!");
}
public Object getState() {
throw new RuntimeException("Stub!");
}
public void setState(Object obj) {
throw new RuntimeException("Stub!");
}
public void open(HttpRoute httpRoute, HttpContext httpContext, HttpParams httpParams) throws IOException {
throw new RuntimeException("Stub!");
}
public void tunnelTarget(boolean z, HttpParams httpParams) throws IOException {
throw new RuntimeException("Stub!");
}
public void tunnelProxy(HttpHost httpHost, boolean z, HttpParams httpParams) throws IOException {
throw new RuntimeException("Stub!");
}
public void layerProtocol(HttpContext httpContext, HttpParams httpParams) throws IOException {
throw new RuntimeException("Stub!");
}
public void shutdownEntry() {
throw new RuntimeException("Stub!");
}
}