Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
package com.amazonaws.http;
import com.amazonaws.util.StringUtils;
import java.io.InputStream;
import java.net.URI;
import java.util.Collections;
import java.util.Map;
import org.apache.http.protocol.HTTP;
/* loaded from: classes.dex */
public class HttpRequest {
public final InputStream content;
public final Map headers;
public boolean isStreaming;
public final String method;
public URI uri;
public InputStream getContent() {
return this.content;
}
public Map getHeaders() {
return this.headers;
}
public String getMethod() {
return this.method;
}
public URI getUri() {
return this.uri;
}
public boolean isStreaming() {
return this.isStreaming;
}
public void setStreaming(boolean z) {
this.isStreaming = z;
}
public HttpRequest(String str, URI uri, Map map, InputStream inputStream) {
Map unmodifiableMap;
this.method = StringUtils.upperCase(str);
this.uri = uri;
if (map == null) {
unmodifiableMap = Collections.EMPTY_MAP;
} else {
unmodifiableMap = Collections.unmodifiableMap(map);
}
this.headers = unmodifiableMap;
this.content = inputStream;
}
public long getContentLength() {
String str;
Map map = this.headers;
if (map == null || (str = (String) map.get(HTTP.CONTENT_LEN)) == null || str.isEmpty()) {
return 0L;
}
return Long.valueOf(str).longValue();
}
}