- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
54 lines
1.5 KiB
Java
54 lines
1.5 KiB
Java
package org.apache.http.util;
|
|
|
|
import java.util.Map;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class VersionInfo {
|
|
public static final String PROPERTY_MODULE = "info.module";
|
|
public static final String PROPERTY_RELEASE = "info.release";
|
|
public static final String PROPERTY_TIMESTAMP = "info.timestamp";
|
|
public static final String UNAVAILABLE = "UNAVAILABLE";
|
|
public static final String VERSION_PROPERTY_FILE = "version.properties";
|
|
|
|
public VersionInfo(String str, String str2, String str3, String str4, String str5) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final String getPackage() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final String getModule() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final String getRelease() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final String getTimestamp() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final String getClassloader() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public String toString() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static final VersionInfo[] loadVersionInfo(String[] strArr, ClassLoader classLoader) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static final VersionInfo loadVersionInfo(String str, ClassLoader classLoader) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static final VersionInfo fromMap(String str, Map map, ClassLoader classLoader) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|