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,14 @@
package org.apache.http.auth;
@Deprecated
/* loaded from: classes5.dex */
public final class AUTH {
public static final String PROXY_AUTH = "Proxy-Authenticate";
public static final String PROXY_AUTH_RESP = "Proxy-Authorization";
public static final String WWW_AUTH = "WWW-Authenticate";
public static final String WWW_AUTH_RESP = "Authorization";
public AUTH() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,22 @@
package org.apache.http.auth;
import org.apache.http.Header;
import org.apache.http.HttpRequest;
@Deprecated
/* loaded from: classes5.dex */
public interface AuthScheme {
Header authenticate(Credentials credentials, HttpRequest httpRequest) throws AuthenticationException;
String getParameter(String str);
String getRealm();
String getSchemeName();
boolean isComplete();
boolean isConnectionBased();
void processChallenge(Header header) throws MalformedChallengeException;
}

View File

@@ -0,0 +1,9 @@
package org.apache.http.auth;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public interface AuthSchemeFactory {
AuthScheme newInstance(HttpParams httpParams);
}

View File

@@ -0,0 +1,33 @@
package org.apache.http.auth;
import java.util.List;
import java.util.Map;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public final class AuthSchemeRegistry {
public AuthSchemeRegistry() {
throw new RuntimeException("Stub!");
}
public synchronized void register(String str, AuthSchemeFactory authSchemeFactory) {
throw new RuntimeException("Stub!");
}
public synchronized void unregister(String str) {
throw new RuntimeException("Stub!");
}
public synchronized AuthScheme getAuthScheme(String str, HttpParams httpParams) throws IllegalStateException {
throw new RuntimeException("Stub!");
}
public synchronized List<String> getSchemeNames() {
throw new RuntimeException("Stub!");
}
public synchronized void setItems(Map<String, AuthSchemeFactory> map) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,59 @@
package org.apache.http.auth;
@Deprecated
/* loaded from: classes5.dex */
public class AuthScope {
public static final AuthScope ANY = null;
public static final String ANY_HOST = null;
public static final int ANY_PORT = -1;
public static final String ANY_REALM = null;
public static final String ANY_SCHEME = null;
public AuthScope(String str, int i, String str2, String str3) {
throw new RuntimeException("Stub!");
}
public AuthScope(String str, int i, String str2) {
throw new RuntimeException("Stub!");
}
public AuthScope(String str, int i) {
throw new RuntimeException("Stub!");
}
public AuthScope(AuthScope authScope) {
throw new RuntimeException("Stub!");
}
public String getHost() {
throw new RuntimeException("Stub!");
}
public int getPort() {
throw new RuntimeException("Stub!");
}
public String getRealm() {
throw new RuntimeException("Stub!");
}
public String getScheme() {
throw new RuntimeException("Stub!");
}
public int match(AuthScope authScope) {
throw new RuntimeException("Stub!");
}
public boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
public int hashCode() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,45 @@
package org.apache.http.auth;
@Deprecated
/* loaded from: classes5.dex */
public class AuthState {
public AuthState() {
throw new RuntimeException("Stub!");
}
public void invalidate() {
throw new RuntimeException("Stub!");
}
public boolean isValid() {
throw new RuntimeException("Stub!");
}
public void setAuthScheme(AuthScheme authScheme) {
throw new RuntimeException("Stub!");
}
public AuthScheme getAuthScheme() {
throw new RuntimeException("Stub!");
}
public Credentials getCredentials() {
throw new RuntimeException("Stub!");
}
public void setCredentials(Credentials credentials) {
throw new RuntimeException("Stub!");
}
public AuthScope getAuthScope() {
throw new RuntimeException("Stub!");
}
public void setAuthScope(AuthScope authScope) {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,19 @@
package org.apache.http.auth;
import org.apache.http.ProtocolException;
@Deprecated
/* loaded from: classes5.dex */
public class AuthenticationException extends ProtocolException {
public AuthenticationException() {
throw new RuntimeException("Stub!");
}
public AuthenticationException(String str) {
throw new RuntimeException("Stub!");
}
public AuthenticationException(String str, Throwable th) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,31 @@
package org.apache.http.auth;
import java.security.Principal;
@Deprecated
/* loaded from: classes5.dex */
public final class BasicUserPrincipal implements Principal {
public BasicUserPrincipal(String str) {
throw new RuntimeException("Stub!");
}
@Override // java.security.Principal
public String getName() {
throw new RuntimeException("Stub!");
}
@Override // java.security.Principal
public int hashCode() {
throw new RuntimeException("Stub!");
}
@Override // java.security.Principal
public boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
@Override // java.security.Principal
public String toString() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,11 @@
package org.apache.http.auth;
import java.security.Principal;
@Deprecated
/* loaded from: classes5.dex */
public interface Credentials {
String getPassword();
Principal getUserPrincipal();
}

View File

@@ -0,0 +1,17 @@
package org.apache.http.auth;
@Deprecated
/* loaded from: classes5.dex */
public class InvalidCredentialsException extends AuthenticationException {
public InvalidCredentialsException() {
throw new RuntimeException("Stub!");
}
public InvalidCredentialsException(String str) {
throw new RuntimeException("Stub!");
}
public InvalidCredentialsException(String str, Throwable th) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,19 @@
package org.apache.http.auth;
import org.apache.http.ProtocolException;
@Deprecated
/* loaded from: classes5.dex */
public class MalformedChallengeException extends ProtocolException {
public MalformedChallengeException() {
throw new RuntimeException("Stub!");
}
public MalformedChallengeException(String str) {
throw new RuntimeException("Stub!");
}
public MalformedChallengeException(String str, Throwable th) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,49 @@
package org.apache.http.auth;
import java.security.Principal;
@Deprecated
/* loaded from: classes5.dex */
public class NTCredentials implements Credentials {
public NTCredentials(String str) {
throw new RuntimeException("Stub!");
}
public NTCredentials(String str, String str2, String str3, String str4) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.auth.Credentials
public Principal getUserPrincipal() {
throw new RuntimeException("Stub!");
}
public String getUserName() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.auth.Credentials
public String getPassword() {
throw new RuntimeException("Stub!");
}
public String getDomain() {
throw new RuntimeException("Stub!");
}
public String getWorkstation() {
throw new RuntimeException("Stub!");
}
public int hashCode() {
throw new RuntimeException("Stub!");
}
public boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,39 @@
package org.apache.http.auth;
import java.security.Principal;
@Deprecated
/* loaded from: classes5.dex */
public class NTUserPrincipal implements Principal {
public NTUserPrincipal(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // java.security.Principal
public String getName() {
throw new RuntimeException("Stub!");
}
public String getDomain() {
throw new RuntimeException("Stub!");
}
public String getUsername() {
throw new RuntimeException("Stub!");
}
@Override // java.security.Principal
public int hashCode() {
throw new RuntimeException("Stub!");
}
@Override // java.security.Principal
public boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
@Override // java.security.Principal
public String toString() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,41 @@
package org.apache.http.auth;
import java.security.Principal;
@Deprecated
/* loaded from: classes5.dex */
public class UsernamePasswordCredentials implements Credentials {
public UsernamePasswordCredentials(String str) {
throw new RuntimeException("Stub!");
}
public UsernamePasswordCredentials(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.auth.Credentials
public Principal getUserPrincipal() {
throw new RuntimeException("Stub!");
}
public String getUserName() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.auth.Credentials
public String getPassword() {
throw new RuntimeException("Stub!");
}
public int hashCode() {
throw new RuntimeException("Stub!");
}
public boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,7 @@
package org.apache.http.auth.params;
@Deprecated
/* loaded from: classes5.dex */
public interface AuthPNames {
public static final String CREDENTIAL_CHARSET = "http.auth.credential-charset";
}

View File

@@ -0,0 +1,17 @@
package org.apache.http.auth.params;
import org.apache.http.params.HttpAbstractParamBean;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class AuthParamBean extends HttpAbstractParamBean {
public AuthParamBean(HttpParams httpParams) {
super(null);
throw new RuntimeException("Stub!");
}
public void setCredentialCharset(String str) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,19 @@
package org.apache.http.auth.params;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public final class AuthParams {
public AuthParams() {
throw new RuntimeException("Stub!");
}
public static String getCredentialCharset(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public static void setCredentialCharset(HttpParams httpParams, String str) {
throw new RuntimeException("Stub!");
}
}