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,59 @@
package org.apache.http.params;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractHttpParams implements HttpParams {
public AbstractHttpParams() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public long getLongParameter(String str, long j) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public HttpParams setLongParameter(String str, long j) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public int getIntParameter(String str, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public HttpParams setIntParameter(String str, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public double getDoubleParameter(String str, double d) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public HttpParams setDoubleParameter(String str, double d) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public boolean getBooleanParameter(String str, boolean z) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public HttpParams setBooleanParameter(String str, boolean z) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public boolean isParameterTrue(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public boolean isParameterFalse(String str) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,55 @@
package org.apache.http.params;
import java.io.Serializable;
@Deprecated
/* loaded from: classes5.dex */
public final class BasicHttpParams extends AbstractHttpParams implements Serializable {
public BasicHttpParams() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public Object getParameter(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public HttpParams setParameter(String str, Object obj) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public boolean removeParameter(String str) {
throw new RuntimeException("Stub!");
}
public void setParameters(String[] strArr, Object obj) {
throw new RuntimeException("Stub!");
}
public boolean isParameterSet(String str) {
throw new RuntimeException("Stub!");
}
public boolean isParameterSetLocally(String str) {
throw new RuntimeException("Stub!");
}
public void clear() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public HttpParams copy() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
public void copyParams(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,14 @@
package org.apache.http.params;
@Deprecated
/* loaded from: classes5.dex */
public interface CoreProtocolPNames {
public static final String HTTP_CONTENT_CHARSET = "http.protocol.content-charset";
public static final String HTTP_ELEMENT_CHARSET = "http.protocol.element-charset";
public static final String ORIGIN_SERVER = "http.origin-server";
public static final String PROTOCOL_VERSION = "http.protocol.version";
public static final String STRICT_TRANSFER_ENCODING = "http.protocol.strict-transfer-encoding";
public static final String USER_AGENT = "http.useragent";
public static final String USE_EXPECT_CONTINUE = "http.protocol.expect-continue";
public static final String WAIT_FOR_CONTINUE = "http.protocol.wait-for-continue";
}

View File

@@ -0,0 +1,33 @@
package org.apache.http.params;
@Deprecated
/* loaded from: classes5.dex */
public final class DefaultedHttpParams extends AbstractHttpParams {
public DefaultedHttpParams(HttpParams httpParams, HttpParams httpParams2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public HttpParams copy() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public Object getParameter(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public boolean removeParameter(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.params.HttpParams
public HttpParams setParameter(String str, Object obj) {
throw new RuntimeException("Stub!");
}
public HttpParams getDefaults() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,11 @@
package org.apache.http.params;
@Deprecated
/* loaded from: classes5.dex */
public abstract class HttpAbstractParamBean {
protected final HttpParams params;
public HttpAbstractParamBean(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,34 @@
package org.apache.http.params;
@Deprecated
/* loaded from: classes5.dex */
public class HttpConnectionParamBean extends HttpAbstractParamBean {
public HttpConnectionParamBean(HttpParams httpParams) {
super(null);
throw new RuntimeException("Stub!");
}
public void setSoTimeout(int i) {
throw new RuntimeException("Stub!");
}
public void setTcpNoDelay(boolean z) {
throw new RuntimeException("Stub!");
}
public void setSocketBufferSize(int i) {
throw new RuntimeException("Stub!");
}
public void setLinger(int i) {
throw new RuntimeException("Stub!");
}
public void setConnectionTimeout(int i) {
throw new RuntimeException("Stub!");
}
public void setStaleCheckingEnabled(boolean z) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,32 @@
package org.apache.http.params;
/* loaded from: classes5.dex */
public interface HttpParams {
HttpParams copy();
boolean getBooleanParameter(String str, boolean z);
double getDoubleParameter(String str, double d);
int getIntParameter(String str, int i);
long getLongParameter(String str, long j);
Object getParameter(String str);
boolean isParameterFalse(String str);
boolean isParameterTrue(String str);
boolean removeParameter(String str);
HttpParams setBooleanParameter(String str, boolean z);
HttpParams setDoubleParameter(String str, double d);
HttpParams setIntParameter(String str, int i);
HttpParams setLongParameter(String str, long j);
HttpParams setParameter(String str, Object obj);
}

View File

@@ -0,0 +1,32 @@
package org.apache.http.params;
import org.apache.http.HttpVersion;
@Deprecated
/* loaded from: classes5.dex */
public class HttpProtocolParamBean extends HttpAbstractParamBean {
public HttpProtocolParamBean(HttpParams httpParams) {
super(null);
throw new RuntimeException("Stub!");
}
public void setHttpElementCharset(String str) {
throw new RuntimeException("Stub!");
}
public void setContentCharset(String str) {
throw new RuntimeException("Stub!");
}
public void setVersion(HttpVersion httpVersion) {
throw new RuntimeException("Stub!");
}
public void setUserAgent(String str) {
throw new RuntimeException("Stub!");
}
public void setUseExpectContinue(boolean z) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,51 @@
package org.apache.http.params;
import org.apache.http.ProtocolVersion;
@Deprecated
/* loaded from: classes5.dex */
public final class HttpProtocolParams implements CoreProtocolPNames {
public HttpProtocolParams() {
throw new RuntimeException("Stub!");
}
public static String getHttpElementCharset(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public static void setHttpElementCharset(HttpParams httpParams, String str) {
throw new RuntimeException("Stub!");
}
public static String getContentCharset(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public static void setContentCharset(HttpParams httpParams, String str) {
throw new RuntimeException("Stub!");
}
public static ProtocolVersion getVersion(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public static void setVersion(HttpParams httpParams, ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public static String getUserAgent(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public static void setUserAgent(HttpParams httpParams, String str) {
throw new RuntimeException("Stub!");
}
public static boolean useExpectContinue(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public static void setUseExpectContinue(HttpParams httpParams, boolean z) {
throw new RuntimeException("Stub!");
}
}