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,58 @@
package org.apache.http.protocol;
import java.io.IOException;
import org.apache.http.ConnectionReuseStrategy;
import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.HttpResponseFactory;
import org.apache.http.HttpServerConnection;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class HttpService {
public HttpService(HttpProcessor httpProcessor, ConnectionReuseStrategy connectionReuseStrategy, HttpResponseFactory httpResponseFactory) {
throw new RuntimeException("Stub!");
}
public void setHttpProcessor(HttpProcessor httpProcessor) {
throw new RuntimeException("Stub!");
}
public void setConnReuseStrategy(ConnectionReuseStrategy connectionReuseStrategy) {
throw new RuntimeException("Stub!");
}
public void setResponseFactory(HttpResponseFactory httpResponseFactory) {
throw new RuntimeException("Stub!");
}
public void setHandlerResolver(HttpRequestHandlerResolver httpRequestHandlerResolver) {
throw new RuntimeException("Stub!");
}
public void setExpectationVerifier(HttpExpectationVerifier httpExpectationVerifier) {
throw new RuntimeException("Stub!");
}
public HttpParams getParams() {
throw new RuntimeException("Stub!");
}
public void setParams(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public void handleRequest(HttpServerConnection httpServerConnection, HttpContext httpContext) throws IOException, HttpException {
throw new RuntimeException("Stub!");
}
public void handleException(HttpException httpException, HttpResponse httpResponse) {
throw new RuntimeException("Stub!");
}
public void doService(HttpRequest httpRequest, HttpResponse httpResponse, HttpContext httpContext) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
}