Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package org.apache.http.conn.routing;
@Deprecated
/* loaded from: classes5.dex */
public class BasicRouteDirector implements HttpRouteDirector {
public BasicRouteDirector() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.HttpRouteDirector
public int nextStep(RouteInfo routeInfo, RouteInfo routeInfo2) {
throw new RuntimeException("Stub!");
}
public int firstStep(RouteInfo routeInfo) {
throw new RuntimeException("Stub!");
}
public int directStep(RouteInfo routeInfo, RouteInfo routeInfo2) {
throw new RuntimeException("Stub!");
}
public int proxiedStep(RouteInfo routeInfo, RouteInfo routeInfo2) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,95 @@
package org.apache.http.conn.routing;
import java.net.InetAddress;
import org.apache.http.HttpHost;
import org.apache.http.conn.routing.RouteInfo;
@Deprecated
/* loaded from: classes5.dex */
public final class HttpRoute implements RouteInfo {
public HttpRoute(HttpHost httpHost, InetAddress inetAddress, HttpHost[] httpHostArr, boolean z, RouteInfo.TunnelType tunnelType, RouteInfo.LayerType layerType) {
throw new RuntimeException("Stub!");
}
public HttpRoute(HttpHost httpHost, InetAddress inetAddress, HttpHost httpHost2, boolean z, RouteInfo.TunnelType tunnelType, RouteInfo.LayerType layerType) {
throw new RuntimeException("Stub!");
}
public HttpRoute(HttpHost httpHost, InetAddress inetAddress, boolean z) {
throw new RuntimeException("Stub!");
}
public HttpRoute(HttpHost httpHost) {
throw new RuntimeException("Stub!");
}
public HttpRoute(HttpHost httpHost, InetAddress inetAddress, HttpHost httpHost2, boolean z) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final HttpHost getTargetHost() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final InetAddress getLocalAddress() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final int getHopCount() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final HttpHost getHopTarget(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final HttpHost getProxyHost() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final RouteInfo.TunnelType getTunnelType() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final boolean isTunnelled() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final RouteInfo.LayerType getLayerType() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final boolean isLayered() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final boolean isSecure() {
throw new RuntimeException("Stub!");
}
public final boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public final int hashCode() {
throw new RuntimeException("Stub!");
}
public final String toString() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,15 @@
package org.apache.http.conn.routing;
@Deprecated
/* loaded from: classes5.dex */
public interface HttpRouteDirector {
public static final int COMPLETE = 0;
public static final int CONNECT_PROXY = 2;
public static final int CONNECT_TARGET = 1;
public static final int LAYER_PROTOCOL = 5;
public static final int TUNNEL_PROXY = 4;
public static final int TUNNEL_TARGET = 3;
public static final int UNREACHABLE = -1;
int nextStep(RouteInfo routeInfo, RouteInfo routeInfo2);
}

View File

@@ -0,0 +1,12 @@
package org.apache.http.conn.routing;
import org.apache.http.HttpException;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;
import org.apache.http.protocol.HttpContext;
@Deprecated
/* loaded from: classes5.dex */
public interface HttpRoutePlanner {
HttpRoute determineRoute(HttpHost httpHost, HttpRequest httpRequest, HttpContext httpContext) throws HttpException;
}

View File

@@ -0,0 +1,39 @@
package org.apache.http.conn.routing;
import java.net.InetAddress;
import org.apache.http.HttpHost;
@Deprecated
/* loaded from: classes5.dex */
public interface RouteInfo {
public enum LayerType {
LAYERED,
PLAIN
}
public enum TunnelType {
PLAIN,
TUNNELLED
}
int getHopCount();
HttpHost getHopTarget(int i);
LayerType getLayerType();
InetAddress getLocalAddress();
HttpHost getProxyHost();
HttpHost getTargetHost();
TunnelType getTunnelType();
boolean isLayered();
boolean isSecure();
boolean isTunnelled();
}

View File

@@ -0,0 +1,111 @@
package org.apache.http.conn.routing;
import java.net.InetAddress;
import org.apache.http.HttpHost;
import org.apache.http.conn.routing.RouteInfo;
@Deprecated
/* loaded from: classes5.dex */
public final class RouteTracker implements RouteInfo {
public RouteTracker(HttpHost httpHost, InetAddress inetAddress) {
throw new RuntimeException("Stub!");
}
public RouteTracker(HttpRoute httpRoute) {
throw new RuntimeException("Stub!");
}
public final void connectTarget(boolean z) {
throw new RuntimeException("Stub!");
}
public final void connectProxy(HttpHost httpHost, boolean z) {
throw new RuntimeException("Stub!");
}
public final void tunnelTarget(boolean z) {
throw new RuntimeException("Stub!");
}
public final void tunnelProxy(HttpHost httpHost, boolean z) {
throw new RuntimeException("Stub!");
}
public final void layerProtocol(boolean z) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final HttpHost getTargetHost() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final InetAddress getLocalAddress() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final int getHopCount() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final HttpHost getHopTarget(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final HttpHost getProxyHost() {
throw new RuntimeException("Stub!");
}
public final boolean isConnected() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final RouteInfo.TunnelType getTunnelType() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final boolean isTunnelled() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final RouteInfo.LayerType getLayerType() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final boolean isLayered() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.conn.routing.RouteInfo
public final boolean isSecure() {
throw new RuntimeException("Stub!");
}
public final HttpRoute toRoute() {
throw new RuntimeException("Stub!");
}
public final boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public final int hashCode() {
throw new RuntimeException("Stub!");
}
public final String toString() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}