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,20 @@
package org.apache.http.cookie;
@Deprecated
/* loaded from: classes5.dex */
public interface ClientCookie extends Cookie {
public static final String COMMENTURL_ATTR = "commenturl";
public static final String COMMENT_ATTR = "comment";
public static final String DISCARD_ATTR = "discard";
public static final String DOMAIN_ATTR = "domain";
public static final String EXPIRES_ATTR = "expires";
public static final String MAX_AGE_ATTR = "max-age";
public static final String PATH_ATTR = "path";
public static final String PORT_ATTR = "port";
public static final String SECURE_ATTR = "secure";
public static final String VERSION_ATTR = "version";
boolean containsAttribute(String str);
String getAttribute(String str);
}

View File

@@ -0,0 +1,31 @@
package org.apache.http.cookie;
import java.util.Date;
@Deprecated
/* loaded from: classes5.dex */
public interface Cookie {
String getComment();
String getCommentURL();
String getDomain();
Date getExpiryDate();
String getName();
String getPath();
int[] getPorts();
String getValue();
int getVersion();
boolean isExpired(Date date);
boolean isPersistent();
boolean isSecure();
}

View File

@@ -0,0 +1,11 @@
package org.apache.http.cookie;
@Deprecated
/* loaded from: classes5.dex */
public interface CookieAttributeHandler {
boolean match(Cookie cookie, CookieOrigin cookieOrigin);
void parse(SetCookie setCookie, String str) throws MalformedCookieException;
void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException;
}

View File

@@ -0,0 +1,17 @@
package org.apache.http.cookie;
import java.io.Serializable;
import java.util.Comparator;
@Deprecated
/* loaded from: classes5.dex */
public class CookieIdentityComparator implements Serializable, Comparator<Cookie> {
public CookieIdentityComparator() {
throw new RuntimeException("Stub!");
}
@Override // java.util.Comparator
public int compare(Cookie cookie, Cookie cookie2) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,29 @@
package org.apache.http.cookie;
@Deprecated
/* loaded from: classes5.dex */
public final class CookieOrigin {
public CookieOrigin(String str, int i, String str2, boolean z) {
throw new RuntimeException("Stub!");
}
public String getHost() {
throw new RuntimeException("Stub!");
}
public String getPath() {
throw new RuntimeException("Stub!");
}
public int getPort() {
throw new RuntimeException("Stub!");
}
public boolean isSecure() {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,17 @@
package org.apache.http.cookie;
import java.io.Serializable;
import java.util.Comparator;
@Deprecated
/* loaded from: classes5.dex */
public class CookiePathComparator implements Serializable, Comparator<Cookie> {
public CookiePathComparator() {
throw new RuntimeException("Stub!");
}
@Override // java.util.Comparator
public int compare(Cookie cookie, Cookie cookie2) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,20 @@
package org.apache.http.cookie;
import java.util.List;
import org.apache.http.Header;
@Deprecated
/* loaded from: classes5.dex */
public interface CookieSpec {
List<Header> formatCookies(List<Cookie> list);
int getVersion();
Header getVersionHeader();
boolean match(Cookie cookie, CookieOrigin cookieOrigin);
List<Cookie> parse(Header header, CookieOrigin cookieOrigin) throws MalformedCookieException;
void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException;
}

View File

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

View File

@@ -0,0 +1,37 @@
package org.apache.http.cookie;
import java.util.List;
import java.util.Map;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public final class CookieSpecRegistry {
public CookieSpecRegistry() {
throw new RuntimeException("Stub!");
}
public synchronized void register(String str, CookieSpecFactory cookieSpecFactory) {
throw new RuntimeException("Stub!");
}
public synchronized void unregister(String str) {
throw new RuntimeException("Stub!");
}
public synchronized CookieSpec getCookieSpec(String str, HttpParams httpParams) throws IllegalStateException {
throw new RuntimeException("Stub!");
}
public synchronized CookieSpec getCookieSpec(String str) throws IllegalStateException {
throw new RuntimeException("Stub!");
}
public synchronized List<String> getSpecNames() {
throw new RuntimeException("Stub!");
}
public synchronized void setItems(Map<String, CookieSpecFactory> map) {
throw new RuntimeException("Stub!");
}
}

View File

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

View File

@@ -0,0 +1,10 @@
package org.apache.http.cookie;
@Deprecated
/* loaded from: classes5.dex */
public interface SM {
public static final String COOKIE = "Cookie";
public static final String COOKIE2 = "Cookie2";
public static final String SET_COOKIE = "Set-Cookie";
public static final String SET_COOKIE2 = "Set-Cookie2";
}

View File

@@ -0,0 +1,21 @@
package org.apache.http.cookie;
import java.util.Date;
@Deprecated
/* loaded from: classes5.dex */
public interface SetCookie extends Cookie {
void setComment(String str);
void setDomain(String str);
void setExpiryDate(Date date);
void setPath(String str);
void setSecure(boolean z);
void setValue(String str);
void setVersion(int i);
}

View File

@@ -0,0 +1,11 @@
package org.apache.http.cookie;
@Deprecated
/* loaded from: classes5.dex */
public interface SetCookie2 extends SetCookie {
void setCommentURL(String str);
void setDiscard(boolean z);
void setPorts(int[] iArr);
}

View File

@@ -0,0 +1,8 @@
package org.apache.http.cookie.params;
@Deprecated
/* loaded from: classes5.dex */
public interface CookieSpecPNames {
public static final String DATE_PATTERNS = "http.protocol.cookie-datepatterns";
public static final String SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-header";
}

View File

@@ -0,0 +1,22 @@
package org.apache.http.cookie.params;
import java.util.Collection;
import org.apache.http.params.HttpAbstractParamBean;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class CookieSpecParamBean extends HttpAbstractParamBean {
public CookieSpecParamBean(HttpParams httpParams) {
super(null);
throw new RuntimeException("Stub!");
}
public void setDatePatterns(Collection<String> collection) {
throw new RuntimeException("Stub!");
}
public void setSingleHeader(boolean z) {
throw new RuntimeException("Stub!");
}
}