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,82 @@
package com.ea.nimble;
import com.ea.nimble.Log;
import java.io.InputStream;
import java.net.URL;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/* loaded from: classes2.dex */
public class HttpResponse implements IHttpResponse {
public Exception error;
public URL url = null;
public boolean isCompleted = false;
public int statusCode = 0;
public HashMap<String, String> headers = new HashMap<>();
public long expectedContentLength = 0;
public long downloadedContentLength = 0;
public long lastModified = -1;
public ByteBufferIOStream data = new ByteBufferIOStream();
@Override // com.ea.nimble.IHttpResponse
public boolean isCompleted() {
Log.Helper.LOGPUBLICFUNC(this);
return this.isCompleted;
}
@Override // com.ea.nimble.IHttpResponse
public URL getUrl() {
Log.Helper.LOGPUBLICFUNC(this);
return this.url;
}
@Override // com.ea.nimble.IHttpResponse
public int getStatusCode() {
Log.Helper.LOGPUBLICFUNC(this);
return this.statusCode;
}
@Override // com.ea.nimble.IHttpResponse
public Map<String, String> getHeaders() {
Log.Helper.LOGPUBLICFUNC(this);
return this.headers;
}
@Override // com.ea.nimble.IHttpResponse
public long getExpectedContentLength() {
Log.Helper.LOGPUBLICFUNC(this);
return this.expectedContentLength;
}
@Override // com.ea.nimble.IHttpResponse
public long getDownloadedContentLength() {
Log.Helper.LOGPUBLICFUNC(this);
return this.downloadedContentLength;
}
@Override // com.ea.nimble.IHttpResponse
public Date getLastModified() {
Log.Helper.LOGPUBLICFUNC(this);
long j = this.lastModified;
if (j == 0) {
return new Date();
}
if (j > 0) {
return new Date(this.lastModified);
}
return null;
}
@Override // com.ea.nimble.IHttpResponse
public InputStream getDataStream() {
Log.Helper.LOGPUBLICFUNC(this);
return this.data.getInputStream();
}
@Override // com.ea.nimble.IHttpResponse
public Exception getError() {
Log.Helper.LOGPUBLICFUNC(this);
return this.error;
}
}