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,63 @@
package org.apache.http;
import java.io.Serializable;
@Deprecated
/* loaded from: classes5.dex */
public class ProtocolVersion implements Serializable {
protected final int major;
protected final int minor;
protected final String protocol;
public ProtocolVersion(String str, int i, int i2) {
throw new RuntimeException("Stub!");
}
public final String getProtocol() {
throw new RuntimeException("Stub!");
}
public final int getMajor() {
throw new RuntimeException("Stub!");
}
public final int getMinor() {
throw new RuntimeException("Stub!");
}
public ProtocolVersion forVersion(int i, int i2) {
throw new RuntimeException("Stub!");
}
public final int hashCode() {
throw new RuntimeException("Stub!");
}
public final boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public boolean isComparable(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public int compareToVersion(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public final boolean greaterEquals(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public final boolean lessEquals(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}